File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
examples/tutorials/10_async/10_temporal
060_open_ai_agents_sdk_hello_world
070_open_ai_agents_sdk_tools
080_open_ai_agents_sdk_human_in_the_loop Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 6969
7070 # Unique name for your agent
7171 # Used for task routing and monitoring
72- name : example-tutorial
72+ name : openai-agents-sdk-hello-world
7373
7474 # Description of what your agent does
7575 # Helps with documentation and discovery
@@ -82,12 +82,12 @@ agent:
8282 workflows :
8383 # Name of the workflow class
8484 # Must match the @workflow.defn name in your workflow.py
85- - name : example-tutorial
85+ - name : openai-agents-sdk-hello-world
8686
8787 # Queue name for task distribution
8888 # Used by Temporal to route tasks to your agent
8989 # Convention: <agent_name>_task_queue
90- queue_name : example_tutorial_queue
90+ queue_name : openai_agents_sdk_hello_world_queue
9191
9292 # Optional: Credentials mapping
9393 # Maps Kubernetes secrets to environment variables
@@ -124,8 +124,8 @@ deployment:
124124 # These can be overridden using --override-file with custom configuration files
125125 global :
126126 agent :
127- name : " example-tutorial "
128- description : " An AgentEx agent "
127+ name : " openai-agents-sdk-hello-world "
128+ description : " OpenAI Agents SDK Hello World tutorial "
129129
130130 # Default replica count
131131 replicaCount : 1
Original file line number Diff line number Diff line change 6767
6868 # Unique name for your agent
6969 # Used for task routing and monitoring
70- name : example-tutorial
70+ name : openai-agents-sdk-tools
7171
7272 # Description of what your agent does
7373 # Helps with documentation and discovery
@@ -80,12 +80,12 @@ agent:
8080 workflows :
8181 # Name of the workflow class
8282 # Must match the @workflow.defn name in your workflow.py
83- - name : example-tutorial
83+ - name : openai-agents-sdk-tools
8484
8585 # Queue name for task distribution
8686 # Used by Temporal to route tasks to your agent
8787 # Convention: <agent_name>_task_queue
88- queue_name : example_tutorial_queue
88+ queue_name : openai_agents_sdk_tools_queue
8989
9090 # Optional: Credentials mapping
9191 # Maps Kubernetes secrets to environment variables
@@ -121,8 +121,8 @@ deployment:
121121 # These can be overridden using --override-file with custom configuration files
122122 global :
123123 agent :
124- name : " example-tutorial "
125- description : " An AgentEx agent "
124+ name : " openai-agents-sdk-tools "
125+ description : " OpenAI Agents SDK with Tools tutorial "
126126
127127 # Default replica count
128128 replicaCount : 1
Original file line number Diff line number Diff line change 6969
7070 # Unique name for your agent
7171 # Used for task routing and monitoring
72- name : example-tutorial
72+ name : openai-agents-sdk-human-in-the-loop
7373
7474 # Description of what your agent does
7575 # Helps with documentation and discovery
@@ -82,12 +82,12 @@ agent:
8282 workflows :
8383 # Name of the workflow class
8484 # Must match the @workflow.defn name in your workflow.py
85- - name : example-tutorial
85+ - name : openai-agents-sdk-human-in-the-loop
8686
8787 # Queue name for task distribution
8888 # Used by Temporal to route tasks to your agent
8989 # Convention: <agent_name>_task_queue
90- queue_name : example_tutorial_queue
90+ queue_name : openai_agents_sdk_human_in_the_loop_queue
9191
9292 # Optional: Credentials mapping
9393 # Maps Kubernetes secrets to environment variables
@@ -124,8 +124,8 @@ deployment:
124124 # These can be overridden using --override-file with custom configuration files
125125 global :
126126 agent :
127- name : " example-tutorial "
128- description : " An AgentEx agent "
127+ name : " openai-agents-sdk-human-in-the-loop "
128+ description : " OpenAI Agents SDK with Human-in-the-Loop tutorial "
129129
130130 # Default replica count
131131 replicaCount : 1
You can’t perform that action at this time.
0 commit comments