mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 22:18:09 +01:00
9 lines
190 B
Python
9 lines
190 B
Python
def change_goal(args: dict) -> dict:
|
|
|
|
new_goal = args.get("goalID")
|
|
if new_goal is None:
|
|
new_goal = "goal_choose_agent_type"
|
|
|
|
return {
|
|
"new_goal": new_goal,
|
|
} |