Skip to content

Commit eefd17a

Browse files
committed
Update agent_base.py
1 parent 81daee8 commit eefd17a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/kernel_agents/agent_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ async def handle_action_request(self, action_request: ActionRequest) -> str:
277277
chat_history = self._chat_history.copy()
278278

279279
# Call the agent to handle the action
280-
agent_response = await self._agent.invoke(
280+
agent_response = self._agent.invoke(
281281
self._kernel, f"{action_request.action}\n\nPlease perform this action"
282282
)
283283
result = str(agent_response)

0 commit comments

Comments
 (0)