Skip to content

Commit c17f3d6

Browse files
authored
fix(agent): fix wrong module import in ReAct agent (#262)
In module `llama_stack_client/lib/agents/react/agent.py`, the `Headers` class is imported with the wrong path. Fixes: #261 Signed-off-by: Cesar Berrospi Ramis <[email protected]>
1 parent 53d95ba commit c17f3d6

File tree

1 file changed

+1
-1
lines changed
  • src/llama_stack_client/lib/agents/react

1 file changed

+1
-1
lines changed

src/llama_stack_client/lib/agents/react/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from llama_stack_client.types.shared_params.response_format import ResponseFormat
1414
from llama_stack_client.types.shared_params.sampling_params import SamplingParams
1515

16-
from ..._types import Headers
16+
from ...._types import Headers
1717
from ..agent import Agent, AgentUtils
1818
from ..client_tool import ClientTool
1919
from ..tool_parser import ToolParser

0 commit comments

Comments
 (0)