Files
wehub-resource-sync 3a7c47b2a6
build / build (macos-latest) (push) Has been cancelled
build / build (ubuntu-latest) (push) Has been cancelled
build / build (windows-latest) (push) Has been cancelled
minimal / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:38:00 +08:00

1.5 KiB

URL Retrieve

pipeline pipeline

The URL Retrieve pipeline retrieves content from a HTTP(s) URL.

Example

The following shows a simple example using this pipeline.

from txtai.pipeline import URLRetrieve

# Create and run pipeline
urlretrieve = URLRetrieve()
urlretrieve("https://github.com/neuml/txtai")

Configuration-driven example

Pipelines are run with Python or configuration. Pipelines can be instantiated in configuration using the lower case name of the pipeline. Configuration-driven pipelines are run with workflows or the API.

config.yml

# Create pipeline using lower case class name
urlretrieve:

# Run pipeline with workflow
workflow:
  retrieve:
    tasks:
      - action: urlretrieve

Run with Workflows

from txtai import Application

# Create and run pipeline with workflow
app = Application("config.yml")
list(app.workflow("urlretrieve", ["https://github.com/neuml/txtai"]))

Run with API

CONFIG=config.yml uvicorn "txtai.api:app" &

curl \
  -X POST "http://localhost:8000/workflow" \
  -H "Content-Type: application/json" \
  -d '{"name":"retrieve", "elements":["http://github.com/neuml/txtai"]}'

Methods

Python documentation for the pipeline.

::: txtai.pipeline.URLRetrieve.init

::: txtai.pipeline.URLRetrieve.call