google / google/adk-python

Migration from SequentialAgent to Workflow with AgentTools: Context is lost

未关闭
#5,780 13 条评论 0 个 reaction 已指派 2 人 已被 @DeanChensj 认领 在 GitHub 查看
needs review v2 workflow
主要语言
Python
星标
21.5k
派生
4k
平均合并
1 天 22 小时
30 天内合并 PR
31

描述

## 🔴 Required Information
*Please ensure all items in this section are completed to allow for efficient
triaging. Requests without complete information may be rejected / deprioritized.
If an item is not applicable to you - please mark it as N/A*

**Describe the Bug:**
I am migrating my SequentialAgent to the new Workflow. Agent 1 has AgentTools.

After migration the Agent calling an AgentTool restarts without context:
START -> Agent1 -> calling Tool "agentTool1" -> Back to Agent1 (but this time the agents starts without any context. It just has its system instructions available).

**Steps to Reproduce:**
Before:
```
sequential_agent = SequentialAgent(
name="Assistant",
description="Sequential agent that orchestrates work and synthesizes final response",
sub_agents=[orchestrator_agent, response_agent],
)
```
Iterating events:
`async for event in sequential_agent.run_async(ctx):`

After:
```
sequential_workflow = Workflow(
name="Assistant",
edges=[("START", orchestrator_agent, response_agent)],
)
```
Iterating events:
`async for event in sequential_workflow.run(ctx=Context(ctx), node_input=ctx.user_content):`

**Expected Behavior:**
Agent1 working on user query, calling agentTool1, returning to Agent1 with full context available (user query, tools calls, tool responses, etc), Agent1 continuing its task

**Observed Behavior:**
Agent1 working on user query, calling agentTool1, returning to Agent1 with no context available, therefore answering something like "Understood. Provide request"

In mlflow it can be seen, the user query is "Handle the requests as specified in the System Instruction.", which is inserted by litellm automatically, if no content parts are available.

**Environment Details:**

- ADK Library Version (pip show google-adk): 2.0.0
- Desktop OS:** macOS
- Python Version (python -V): 3.12.13

**Model Information:**

- Are you using LiteLLM: Yes
- Which model is being used: Mistral Models, but that's irrelevant

---

## 🟡 Optional Information
*Providing this information greatly speeds up the resolution process.*

**Regression:**
It works with sequential agent, it does not with worflow

**Logs:**
n/a

**Screenshots / Video:**
n/a

**Additional Context:**
n/a

**Minimal Reproduction Code:**
n/a

**How often has this issue occurred?:**
- Always (100%)

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。