File tree Expand file tree Collapse file tree
examples/tutorials/10_async/10_temporal
060_open_ai_agents_sdk_hello_world/project
070_open_ai_agents_sdk_tools/project
080_open_ai_agents_sdk_human_in_the_loop/project Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import asyncio
22
3- from project .workflow import ExampleTutorialWorkflow
43from temporalio .contrib .openai_agents import OpenAIAgentsPlugin
54
5+ from project .workflow import ExampleTutorialWorkflow
66from agentex .lib .utils .debug import setup_debug_if_enabled
77from agentex .lib .utils .logging import make_logger
88from agentex .lib .environment_variables import EnvironmentVariables
Original file line number Diff line number Diff line change 11import asyncio
22from datetime import timedelta
33
4- from project .workflow import ExampleTutorialWorkflow
5- from project .activities import get_weather , deposit_money , withdraw_money
64from temporalio .contrib .openai_agents import OpenAIAgentsPlugin , ModelActivityParameters
75
6+ from project .workflow import ExampleTutorialWorkflow
7+ from project .activities import get_weather , deposit_money , withdraw_money
88from agentex .lib .utils .debug import setup_debug_if_enabled
99from agentex .lib .utils .logging import make_logger
1010from agentex .lib .environment_variables import EnvironmentVariables
Original file line number Diff line number Diff line change 11import asyncio
22from datetime import timedelta
33
4- from project .workflow import ChildWorkflow , ExampleTutorialWorkflow
5- from project .activities import confirm_order , deposit_money , withdraw_money
64from temporalio .contrib .openai_agents import OpenAIAgentsPlugin , ModelActivityParameters
75
6+ from project .workflow import ChildWorkflow , ExampleTutorialWorkflow
7+ from project .activities import confirm_order , deposit_money , withdraw_money
88from agentex .lib .utils .debug import setup_debug_if_enabled
99from agentex .lib .utils .logging import make_logger
1010from agentex .lib .environment_variables import EnvironmentVariables
Original file line number Diff line number Diff line change 2828
2929from agents import Agent , Runner
3030from temporalio import workflow
31- from project .tools import wait_for_confirmation
3231
3332from agentex .lib import adk
33+ from project .tools import wait_for_confirmation
3434from agentex .lib .types .acp import SendEventParams , CreateTaskParams
3535from agentex .lib .utils .logging import make_logger
3636from agentex .types .text_content import TextContent
You can’t perform that action at this time.
0 commit comments