Load Together AI data to DuckDB
Build a Together AI to DuckDB pipeline with your coding agent. One prompt scaffolds it with the dltHub AI harness, plus the Together AI API base URL, auth, endpoints, and incremental loading.
Together AI is an inference platform providing REST APIs for accessing various AI models and managing dedicated inference endpoints. Everything needed to build a working Together AI → DuckDB pipeline is on this page: the API's base URL, authentication, endpoints, pagination and incremental field — plus a prompt that hands the whole job to your coding agent.
Build your Together AI to DuckDB pipeline
Paste this prompt into Claude, Codex, or Cursor. The agent does the rest.
PromptRunuvx dlthub-init@latestto build a pipeline from Together AI to DuckDB and run it on dltHub
That scaffolds a dltHub workspace and installs the dltHub AI harness — the project rules, the secrets-management skill, and the dlt MCP server your agent needs to work safely. From there it reads the Together AI API, proposes the endpoints to load, then writes, runs and validates the pipeline while you review rather than type. Credentials are inspected through MCP tools, so your agent never reads secrets.toml itself. How the LLM-native workflow works →
Prefer to write it yourself? Every fact the agent uses is below.
Together AI API at a glance
| Base URL | https://api.together.ai/v1 |
| Example endpoint | GET v2/endpoints |
| Records found at | data |
| Authentication | All requests require an API key passed in the Authorization header using the Bearer token scheme — sent in the Authorization header, prefixed Bearer |
| Pagination | Cursor-based via after, next cursor at next_cursor, page size via limit (default 1, max 1). List responses include next_cursor (null when no more pages). For page size, the documented query parameter is limit for at least the organization models list endpoint; other list endpoints show cursor but do not show limit in the provided snippets. |
| Incremental field | after |
| API reference | https://docs.together.ai/reference |
These values come from the Together AI API reference — the authoritative source if anything here looks out of date.
How do I authenticate with the Together AI API?
Together AI uses API key-based authentication via the Authorization header. Every request must include the header as 'Authorization: Bearer <API_KEY>'.
1. Get your credentials
- Sign in to your account at https://api.together.ai/.
- Navigate to your project's dashboard.
- Select 'API keys' from the sidebar or project settings (direct URL: https://api.together.ai/settings/projects/~current/api-keys).
- Click 'Create API Key', enter a name, and optionally set an expiration date.
- Copy the generated key immediately, as it will not be displayed again. Note: You must have at least $5 in credits on your account to access API keys.
2. Add them to .dlt/secrets.toml
[sources.together_ai_source] together_api_key = "your_together_ai_api_key_here"
dlt reads this file automatically at runtime. With the harness, the setup-secrets skill prompts you for the values and never handles the raw credential in chat. For production, see setting up credentials with dlt.
What Together AI data can I load into DuckDB?
These are the Together AI endpoints dlt can load into DuckDB:
| Resource | Endpoint | Method | Data selector | Description |
|---|---|---|---|---|
| models | /v1/models | GET | Lists all Together open-source models | |
| endpoints | /v2/endpoints | GET | data | Lists serverless endpoints |
| project_models | /v2/projects/{projectId}/models | GET | Lists custom models for a project | |
| supported_models | /v2/supported-models | GET | Lists base models for dedicated inference | |
| chat_completions | /v1/chat/completions | POST | Creates chat completions |
How do I load only new Together AI records?
Together AI exposes after on v2/endpoints, so dlt can request only the records that changed since the last run. Set it as the cursor_path and dlt tracks the high-water mark for you between runs.
{"name": "endpoints", "endpoint": { "path": "v2/endpoints", "data_selector": "data", "incremental": {"cursor_path": "after", "initial_value": "2024-01-01T00:00:00Z"}, }}
On the first run dlt loads everything from initial_value; on every run after that it requests only what changed and appends with write_disposition="merge" if you set a primary key. See incremental loading.
What does the generated Together AI pipeline look like?
A standard dlt REST API pipeline — the same code you would write by hand, loading /chat/completions and /embeddings from the Together AI API into DuckDB:
import dlt from dlt.sources.rest_api import RESTAPIConfig, rest_api_resources @dlt.source def together_ai_source(api_key=dlt.secrets.value): config: RESTAPIConfig = { "client": { "base_url": "https://api.together.ai/v1", "auth": {"type": "bearer", "token": api_key}, }, "resources": [ {"name": "endpoints", "endpoint": {"path": "v2/endpoints", "data_selector": "data"}}, {"name": "project_models", "endpoint": {"path": "v2/projects/{projectId}/models", "data_selector": "models"}} ], } yield from rest_api_resources(config) def load_together_ai_to_duckdb() -> None: pipeline = dlt.pipeline( pipeline_name="together_ai_pipeline", destination="duckdb", dataset_name="together_ai_data", ) load_info = pipeline.run(together_ai_source()) print(load_info) if __name__ == "__main__": load_together_ai_to_duckdb()
Run it with python together_ai_pipeline.py. The agent iterates on this until it loads cleanly — you review and approve, rather than write it from scratch.
How do I query Together AI data in DuckDB?
dlt creates one table per resource. Query the loaded data with Python or SQL — or ask your agent to, through the MCP server's execute_sql_query tool.
Python (pandas DataFrame):
import dlt data = dlt.pipeline("together_ai_pipeline").dataset() df = data.endpoints.df() print(df.head())
SQL:
SELECT * FROM together_ai_data.endpoints LIMIT 10;
See querying your data with dataset and exploring it in marimo notebooks.
How do I deploy the Together AI to DuckDB pipeline in production?
The pipeline runs locally, which is ideal for prototyping and one-off analysis. When you need it on a schedule, monitored on every load, and shared with your team, deploy the same dlt code on the dltHub platform — no infrastructure to maintain. The prompt above already ends with "run it on dltHub", so your agent can take it there directly.
- Deploy & schedule — run the pipeline as a managed job with automatic retries.
- Monitor — observable job queues, alerting, and load metrics for every run.
- Transform — promote raw Together AI loads into governed, documented models.
- Visualize & share — explore data in notebooks and publish live dashboards instead of static screenshots.
What other destinations can I load Together AI data to?
dlt loads into any of these — only the destination argument changes:
| Destination | Example value |
|---|---|
| PostgreSQL | "postgres" |
| BigQuery | "bigquery" |
| Snowflake | "snowflake" |
| Redshift | "redshift" |
| Databricks | "databricks" |
| Filesystem (S3, GCS, Azure) | "filesystem" |
Set dlt.pipeline(destination="snowflake") and add credentials in .dlt/secrets.toml. On the dltHub platform the same pipeline runs against a managed Iceberg lakehouse. See the full destinations list.
Next steps
Was this page helpful?
Community Hub
Need more dlt context for Together AI to DuckDB?
Request dlt skills, commands, AGENT.md files, and AI-native context.