Use A2A DeepAgents model resolver

This commit is contained in:
2026-06-06 20:30:09 -03:00
parent 4f4da2a7f3
commit fdd620ef17
2 changed files with 7 additions and 23 deletions

View File

@@ -31,7 +31,7 @@ Keep this line when building DeepAgents graphs:
```python
backend = ctx.workspace_backend()
return create_deep_agent(model=model, backend=backend, tools=[...])
return create_a2a_deep_agent(ctx, creds=creds, backend=backend, tools=[...])
```
Invoke DeepAgents graphs with the starter recursion budget:
@@ -75,7 +75,7 @@ after the request. Use the sandbox helpers for any file-producing toolchain.
If this project grows reusable workflow knowledge, add source-controlled skill
folders under `skills/<skill-name>/SKILL.md`. The starter's `_seed_runtime_skills`
helper copies those packaged skills into the invocation workspace and passes the
resulting source path to `create_deep_agent(..., skills=[...])`, which is how
resulting source path to `create_a2a_deep_agent(..., skills=[...])`, which is how
DeepAgents discovers skills with progressive disclosure.
## Run Locally