Pydantic AI adapter for OpenBB SDK. Enables connettion any pydantic-ai agent to the OpenBB Workspace.
Project description
OpenBB Pydantic AI Adapter
openbb-pydantic-ai lets any Pydantic AI agent
run behind OpenBB Workspace by translating QueryRequest payloads into a Pydantic
AI run, exposing Workspace widgets as deferred tools, and streaming native
OpenBB SSE events back to the UI.
- Stateless by design: each
QueryRequestalready carries the full conversation history, widgets, context, and URLs, so the adapter can process requests independently. - First-class widget tools: every widget becomes a deferred Pydantic AI tool;
when the model calls one, the adapter emits
copilotFunctionCallevents viaget_widget_dataand waits for the Workspace to return data before resuming. - Rich event stream: reasoning steps, “Thinking“ traces, tables, charts, and citations are streamed as OpenBB SSE payloads so the Workspace UI can group them into dropdowns automatically.
- Output helpers included: structured model outputs (dicts/lists) are auto-detected and turned into tables or charts, with chart parameter normalization to ensure consistent rendering.
To learn more about the underlying SDK types, see the OpenBB Custom Agent SDK repo and the Pydantic AI UI adapter docs.
Installation
The adapter is published as a lightweight package, install it wherever you build custom agents:
pip install openbb-pydantic-ai
# or with uv
uv add openbb-pydantic-ai
Quick Start (FastAPI)
from fastapi import FastAPI, Request
from pydantic_ai import Agent
from openbb_pydantic_ai import OpenBBAIAdapter
agent = Agent(
"openai:gpt-4o",
instructions="Be concise and helpful. Only use widget tools for data lookups.",
)
app = FastAPI()
@app.post("/query")
async def query(request: Request):
return await OpenBBAIAdapter.dispatch_request(request, agent=agent)
How It Works
1. Request Handling
- OpenBB Workspace calls the
/queryendpoint with aQueryRequestbody OpenBBAIAdaptervalidates it and builds the Pydantic AI message stack- Workspace context and URLs are injected as system prompts
2. Widget Tool Conversion
- Widgets in the request become deferred tools
- Each call emits a
copilotFunctionCallevent (viaget_widget_data) - The adapter pauses until Workspace responds with data
3. Event Streaming
Pydantic AI events are wrapped into OpenBB SSE events:
- Text chunks → stream via
copilotMessageChunk - Reasoning steps → appear under the "Step-by-step reasoning" dropdown (including Thinking sections)
- Tables/charts → emitted as
copilotMessageArtifactevents with correct chart parameters for consistent rendering - Citations → fire at the end of the run for every widget tool used
Advanced Usage
Need more control? Instantiate the adapter manually:
from openbb_pydantic_ai import OpenBBAIAdapter
run_input = OpenBBAIAdapter.build_run_input(body_bytes)
adapter = OpenBBAIAdapter(agent=agent, run_input=run_input)
async for event in adapter.run_stream():
yield event # Already encoded as OpenBB SSE payloads
You can also supply message_history, deferred_tool_results, or on_complete
callbacks—any option supported by Agent.run_stream_events() is accepted.
Features
Widget Toolsets
- Widgets are grouped by priority (
primary,secondary,extra) and exposed through dedicated toolsets so you can gate access if needed. - Tool names follow
openbb_widget_{origin}_{widget_id}; the helperbuild_widget_tool_namereproduces the exact string for routing.
Deferred Results & Citations
- Pending widget responses provided in the request are replayed before the run starts, making multi-turn workflows seamless.
- Every widget call records a citation via
openbb_ai.helpers.cite, emitted as acopilotCitationCollectionat the end of the run.
Structured Output Detection
The adapter provides built-in tools and automatic detection for tables and charts:
openbb_create_table- Explicitly create table artifacts from structured dataopenbb_create_chart- Create chart artifacts (line, bar, scatter, pie, donut) with validation- Auto-detection - Dict/list outputs shaped like
{"type": "table", "data": [...]}(or just a list of dicts) automatically become tables - Flexible chart parameters - Chart outputs tolerate different field spellings (
y_keys,yKeys, etc.) and validate required axes before emitting
These tools are always available through the VisualizationToolset, allowing agents to explicitly create well-formatted visualizations.
Local Development
This repo ships a UV-based workflow:
uv sync --dev # install dependencies
uv run pytest # run the focused test suite
uv run ty check # static type checking (ty)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openbb_pydantic_ai-0.1.2.tar.gz.
File metadata
- Download URL: openbb_pydantic_ai-0.1.2.tar.gz
- Upload date:
- Size: 20.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6b2924ab6113b060793109de27528f620227d2236eb9f3f140b2a743c72a646
|
|
| MD5 |
43cb01a4b0eee709ea012065b9f1ab4f
|
|
| BLAKE2b-256 |
fff9244765c3d6d24e6869405565b9052b273c376a4b81737d5f4d6490a5dd71
|
File details
Details for the file openbb_pydantic_ai-0.1.2-py3-none-any.whl.
File metadata
- Download URL: openbb_pydantic_ai-0.1.2-py3-none-any.whl
- Upload date:
- Size: 27.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b964a07d0212c30469cece9eaceac0a2aaa406e5d68d542ab0c168454322808
|
|
| MD5 |
bb48a70943f4b5896a11a025d938118f
|
|
| BLAKE2b-256 |
7bece60465812a105183cdc5c76309b52f8d59f9e601874922918f7cb1bf6922
|