Skip to content

Commit eb4c702

Browse files
committed
Fixup more feedback
1 parent a18ca2f commit eb4c702

File tree

4 files changed

+23
-1554
lines changed

4 files changed

+23
-1554
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
server.egg-info/

typescript-sdk/integrations/pydantic-ai/examples/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,17 @@ The examples include implementations for each of the AG-UI dojo features:
2626

2727
## Usage
2828

29-
Once the server is running, you can access the different examples at:
29+
Once the server is running, launch the frontend dojo with:
30+
31+
```bash
32+
cd ../../../
33+
pnpm install
34+
turbo run dev
35+
```
36+
37+
and view it at http://localhost:3000.
38+
39+
By default, the agents can be reached at:
3040

3141
- `http://localhost:9000/agentic_chat` - Agentic Chat
3242
- `http://localhost:9000/agentic_generative_ui` - Agentic Generative UI

typescript-sdk/integrations/pydantic-ai/examples/pyproject.toml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
[build-system]
2-
requires = ["hatchling"]
3-
build-backend = "hatchling.build"
1+
tool.uv.package = true
42

53
[project]
64
name = "server"
@@ -13,15 +11,9 @@ requires-python = ">=3.9"
1311
dependencies = [
1412
"fastapi>=0.104.0",
1513
"uvicorn[standard]>=0.24.0",
16-
"pydantic-ai>=0.1.0",
17-
]
18-
authors = [
19-
{ name = "Samuel Colvin", email = "[email protected]" },
20-
{ name = "Marcelo Trylesinski", email = "[email protected]" },
21-
{ name = "David Montague", email = "[email protected]" },
22-
{ name = "Alex Hall", email = "[email protected]" },
23-
{ name = "Douwe Maan", email = "[email protected]" },
14+
"pydantic-ai-slim[openai,ag-ui]>=0.1.0",
2415
]
16+
authors = []
2517

2618
[project.scripts]
2719
dev = "server:main"

0 commit comments

Comments
 (0)