Skip to content

Commit c456941

Browse files
committed
Changing agent name
1 parent 3706bc1 commit c456941

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

examples/tutorials/10_agentic/10_temporal/030_custom_activities/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 030-custom-activities - AgentEx Temporal Agent Template
1+
# at030-custom-activities - AgentEx Temporal Agent Template
22

33
This is a starter template for building asynchronous agents with the AgentEx framework and Temporal. It provides a basic implementation of the Agent 2 Client Protocol (ACP) with Temporal workflow support to help you get started quickly.
44

@@ -99,7 +99,7 @@ The notebook includes:
9999
- **Async message subscription**: Subscribe to server-side events to receive agent responses
100100
- **Rich message display**: Beautiful formatting with timestamps and author information
101101

102-
The notebook automatically uses your agent name (`030-custom-activities`) and demonstrates the agentic ACP workflow: create task → send event → subscribe to responses.
102+
The notebook automatically uses your agent name (`at030-custom-activities`) and demonstrates the agentic ACP workflow: create task → send event → subscribe to responses.
103103

104104
### 3. Develop Temporal Workflows
105105
- Edit `workflow.py` to define your agent's async workflow logic
@@ -179,7 +179,7 @@ export ENVIRONMENT=development && [uv run] agentex agents run --manifest manifes
179179
Option 0: CLI (deprecated - to be replaced once a new CLI is implemented - please use the web UI for now!)
180180
```bash
181181
# Submit a task via CLI
182-
agentex tasks submit --agent 030-custom-activities --task "Your task here"
182+
agentex tasks submit --agent at030-custom-activities --task "Your task here"
183183
```
184184

185185
Option 1: Web UI

examples/tutorials/10_agentic/10_temporal/030_custom_activities/dev.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"metadata": {},
2020
"outputs": [],
2121
"source": [
22-
"AGENT_NAME = \"030-custom-activities\""
22+
"AGENT_NAME = \"at030-custom-activities\""
2323
]
2424
},
2525
{

examples/tutorials/10_agentic/10_temporal/030_custom_activities/manifest.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ agent:
6969

7070
# Unique name for your agent
7171
# Used for task routing and monitoring
72-
name: 030-custom-activities
72+
name: at030-custom-activities
7373

7474
# Description of what your agent does
7575
# Helps with documentation and discovery
76-
description: An AgentEx agent
76+
description: An AgentEx agent with custom activities
7777

7878
# Temporal workflow configuration
7979
# This enables your agent to run as a Temporal workflow for long-running tasks
@@ -82,7 +82,7 @@ agent:
8282
workflows:
8383
# Name of the workflow class
8484
# Must match the @workflow.defn name in your workflow.py
85-
- name: 030-custom-activities
85+
- name: at030-custom-activities
8686

8787
# Queue name for task distribution
8888
# Used by Temporal to route tasks to your agent
@@ -121,8 +121,8 @@ deployment:
121121
# These can be overridden using --override-file with custom configuration files
122122
global:
123123
agent:
124-
name: "030-custom-activities"
125-
description: "An AgentEx agent"
124+
name: "at030-custom-activities"
125+
description: "An AgentEx agent with custom activities"
126126

127127
# Default replica count
128128
replicaCount: 1

examples/tutorials/10_agentic/10_temporal/030_custom_activities/project/run_worker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from agentex.lib.utils.debug import setup_debug_if_enabled
77
from agentex.lib.environment_variables import EnvironmentVariables
88

9-
from project.workflow import 030CustomActivitiesWorkflow
9+
from project.workflow import At030CustomActivitiesWorkflow
1010

1111

1212
environment_variables = EnvironmentVariables.refresh()
@@ -29,7 +29,7 @@ async def main():
2929

3030
await worker.run(
3131
activities=get_all_activities(),
32-
workflow=030CustomActivitiesWorkflow,
32+
workflow=At030CustomActivitiesWorkflow,
3333
)
3434

3535
if __name__ == "__main__":

examples/tutorials/10_agentic/10_temporal/030_custom_activities/project/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
logger = make_logger(__name__)
2222

2323
@workflow.defn(name=environment_variables.WORKFLOW_NAME)
24-
class 030CustomActivitiesWorkflow(BaseWorkflow):
24+
class At030CustomActivitiesWorkflow(BaseWorkflow):
2525
"""
2626
Minimal async workflow template for AgentEx Temporal agents.
2727
"""

examples/tutorials/10_agentic/10_temporal/030_custom_activities/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "030_custom_activities"
77
version = "0.1.0"
8-
description = "An AgentEx agent"
8+
description = "An AgentEx agent with custom activities"
99
requires-python = ">=3.12"
1010
dependencies = [
1111
"agentex-sdk",

0 commit comments

Comments
 (0)