You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@deno --version > /dev/null 2>&1|| (printf "\033[0;31m✖ Error: deno is not installed, but is needed for mcp-run-python\033[0m\n Please install deno: https://docs.deno.com/runtime/getting_started/installation/\n"&&exit 1)
14
-
15
11
.PHONY: install
16
-
install: .uv .pre-commit .deno ## Install the package, dependencies, and pre-commit for local development
12
+
install: .uv .pre-commit ## Install the package, dependencies, and pre-commit for local development
@@ -171,7 +170,7 @@ validate state contained in [`RunAgentInput.state`](https://docs.ag-ui.com/sdk/j
171
170
If the `state` field's type is a Pydantic `BaseModel` subclass, the raw state dictionary on the request is automatically validated. If not, you can validate the raw value yourself in your dependencies dataclass's `__post_init__` method.
172
171
173
172
174
-
```python {title="ag_ui_state.py" py="3.10"}
173
+
```python {title="ag_ui_state.py"}
175
174
from pydantic import BaseModel
176
175
177
176
from pydantic_ai import Agent
@@ -211,7 +210,7 @@ which returns a (subclass of)
211
210
[`BaseEvent`](https://docs.ag-ui.com/sdk/python/core/events#baseevent), which allows
0 commit comments