mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
Add new goal to choose agent type - only kind of working
This commit is contained in:
13
tools/change_goal.py
Normal file
13
tools/change_goal.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# can this just call the API endpoint to set the goal, if that changes to allow a param?
|
||||
# --- OR ---
|
||||
# end this workflow and start a new one with the new goal
|
||||
import shared.config
|
||||
|
||||
def change_goal(args: dict) -> dict:
|
||||
|
||||
new_goal = args.get("goalID")
|
||||
shared.config.AGENT_GOAL = new_goal
|
||||
|
||||
return {
|
||||
"new_goal": shared.config.AGENT_GOAL,
|
||||
}
|
||||
Reference in New Issue
Block a user