Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ agent:

# Unique name for your agent
# Used for task routing and monitoring
name: example-tutorial
name: openai-agents-sdk-hello-world

# Description of what your agent does
# Helps with documentation and discovery
Expand All @@ -82,12 +82,12 @@ agent:
workflows:
# Name of the workflow class
# Must match the @workflow.defn name in your workflow.py
- name: example-tutorial
- name: openai-agents-sdk-hello-world

# Queue name for task distribution
# Used by Temporal to route tasks to your agent
# Convention: <agent_name>_task_queue
queue_name: example_tutorial_queue
queue_name: openai_agents_sdk_hello_world_queue

# Optional: Credentials mapping
# Maps Kubernetes secrets to environment variables
Expand Down Expand Up @@ -124,8 +124,8 @@ deployment:
# These can be overridden using --override-file with custom configuration files
global:
agent:
name: "example-tutorial"
description: "An AgentEx agent"
name: "openai-agents-sdk-hello-world"
description: "OpenAI Agents SDK Hello World tutorial"

# Default replica count
replicaCount: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ agent:

# Unique name for your agent
# Used for task routing and monitoring
name: example-tutorial
name: openai-agents-sdk-tools

# Description of what your agent does
# Helps with documentation and discovery
Expand All @@ -80,12 +80,12 @@ agent:
workflows:
# Name of the workflow class
# Must match the @workflow.defn name in your workflow.py
- name: example-tutorial
- name: openai-agents-sdk-tools

# Queue name for task distribution
# Used by Temporal to route tasks to your agent
# Convention: <agent_name>_task_queue
queue_name: example_tutorial_queue
queue_name: openai_agents_sdk_tools_queue

# Optional: Credentials mapping
# Maps Kubernetes secrets to environment variables
Expand Down Expand Up @@ -121,8 +121,8 @@ deployment:
# These can be overridden using --override-file with custom configuration files
global:
agent:
name: "example-tutorial"
description: "An AgentEx agent"
name: "openai-agents-sdk-tools"
description: "OpenAI Agents SDK with Tools tutorial"

# Default replica count
replicaCount: 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ agent:

# Unique name for your agent
# Used for task routing and monitoring
name: example-tutorial
name: openai-agents-sdk-human-in-the-loop

# Description of what your agent does
# Helps with documentation and discovery
Expand All @@ -82,12 +82,12 @@ agent:
workflows:
# Name of the workflow class
# Must match the @workflow.defn name in your workflow.py
- name: example-tutorial
- name: openai-agents-sdk-human-in-the-loop

# Queue name for task distribution
# Used by Temporal to route tasks to your agent
# Convention: <agent_name>_task_queue
queue_name: example_tutorial_queue
queue_name: openai_agents_sdk_human_in_the_loop_queue

# Optional: Credentials mapping
# Maps Kubernetes secrets to environment variables
Expand Down Expand Up @@ -124,8 +124,8 @@ deployment:
# These can be overridden using --override-file with custom configuration files
global:
agent:
name: "example-tutorial"
description: "An AgentEx agent"
name: "openai-agents-sdk-human-in-the-loop"
description: "OpenAI Agents SDK with Human-in-the-Loop tutorial"

# Default replica count
replicaCount: 1
Expand Down