Skip to content

Commit 9af5e59

Browse files
author
Kowser
committed
Replace port from 6767 to 8080
1 parent 9b928ca commit 9af5e59

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/agents/advanced.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ with AgentRuntime() as runtime:
2222
runtime.run(agent, "hi")
2323

2424
# Explicit kwargs
25-
with AgentRuntime(server_url="https://prod:6767/api",
25+
with AgentRuntime(server_url="https://prod:8080/api",
2626
api_key="...") as runtime:
2727
...
2828

@@ -45,7 +45,7 @@ For one-off scripts, top-level functions use a shared singleton runtime:
4545
```python
4646
import conductor.ai.agents as ag
4747

48-
ag.configure(server_url="https://prod:6767/api", auto_start_server=False) # before first run
48+
ag.configure(server_url="https://prod:8080/api", auto_start_server=False) # before first run
4949
result = ag.run(agent, "Hello!")
5050
ag.shutdown() # explicit cleanup; not required for simple scripts
5151
```

examples/agents/blog-and-video-examples/handoff/03_issue_triage_github_discord.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
pip install agentspan requests
2424
agentspan server start
2525
26-
# Store credentials in the AgentSpan UI (localhost:6767 → Credentials):
26+
# Store credentials in the AgentSpan UI (localhost:8080 → Credentials):
2727
# GITHUB_TOKEN = GitHub personal access token (needs repo scope)
2828
# DISCORD_TOKEN = Discord bot token
2929

examples/agents/blog-and-video-examples/parallel_execution/02_code_review_parallel_github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
pip install agentspan requests
1414
agentspan server start
1515
16-
# Store credentials in the AgentSpan UI (localhost:6767 → Credentials):
16+
# Store credentials in the AgentSpan UI (localhost:8080 → Credentials):
1717
# GITHUB_TOKEN = your GitHub personal access token (needs repo scope)
1818
1919
python 02_code_review_parallel_github.py

examples/agents/blog-and-video-examples/random/07_brainstorm_random_blog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pip install conductor-agent-sdk
2929
agentspan server start
3030
```
3131

32-
This gives you a local Agentspan server with a visual dashboard at localhost:6767.
32+
This gives you a local Agentspan server with a visual dashboard at localhost:8080.
3333

3434
## What we are building
3535

examples/agents/blog-and-video-examples/sequential_pipeline/02_support_ticket_zendesk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
pip install agentspan requests
1414
agentspan server start
1515
16-
# Store credentials in the AgentSpan UI (localhost:6767 → Credentials):
16+
# Store credentials in the AgentSpan UI (localhost:8080 → Credentials):
1717
# ZENDESK_API = your Zendesk API token
1818
# ZENDESK_EMAIL = your Zendesk email (e.g. you@company.com)
1919

examples/agents/hello_world_agent_schedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
the agent on a cadence and shows execution history with the LLM output.
66
77
Requires:
8-
- agentspan-runtime running on port 6767 with the scheduler module
8+
- agentspan-runtime running on port 8080 with the scheduler module
99
(see docs/design/plans/2026-05-27-agent-scheduling.md task 6)
1010
- An OPENAI_API_KEY (or change the model)
1111

examples/agents/hello_world_schedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
scheduling pipeline is identical either way.
1010
1111
NOTE: Targets OSS Conductor at port 8089. The agentspan-runtime on port
12-
6767 doesn't (yet) include the scheduler module — see
12+
8080 doesn't (yet) include the scheduler module — see
1313
``docs/design/plans/2026-05-27-agent-scheduling.md`` open dependency #1.
1414
1515
Run::

src/conductor/ai/agents/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def configure(config=None, **kwargs):
5959
are ignored.
6060
**kwargs: Individual config fields to override on top of
6161
:meth:`AgentConfig.from_env` defaults (e.g.
62-
``server_url="https://prod:6767/api"``,
62+
``server_url="https://prod:8080/api"``,
6363
``auto_start_server=False``).
6464
6565
Raises:
@@ -71,7 +71,7 @@ def configure(config=None, **kwargs):
7171
7272
import conductor.ai.agents as ag
7373
74-
ag.configure(server_url="https://prod:6767/api", auto_start_server=False)
74+
ag.configure(server_url="https://prod:8080/api", auto_start_server=False)
7575
result = ag.run(agent, "Hello!")
7676
"""
7777
global _default_config, _default_runtime

src/conductor/ai/agents/runtime/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Usage::
1010
1111
config = AgentConfig.from_env() # load from env
12-
config = AgentConfig(server_url="http://custom:6767/api") # explicit
12+
config = AgentConfig(server_url="http://custom:8080/api") # explicit
1313
"""
1414

1515
from __future__ import annotations

0 commit comments

Comments
 (0)