Skip to content

Commit 9b928ca

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

25 files changed

Lines changed: 43 additions & 43 deletions

e2e/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class CredentialsCLI:
9898
"""Wraps the agentspan CLI for credential operations.
9999
100100
The CLI expects AGENTSPAN_SERVER_URL without the /api suffix
101-
(e.g., http://localhost:6767). It appends /api internally.
101+
(e.g., http://localhost:8080). It appends /api internally.
102102
"""
103103

104104
def __init__(self, cli_path: str, server_url: str):

examples/agents/100_issue_fixer_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
QA_EVIDENCE_DIR = "qa-tests" # QA testing evidence per issue
7373

7474
# ── Server ───────────────────────────────────────────────────
75-
SERVER_URL = "http://localhost:6767"
75+
SERVER_URL = "http://localhost:8080"
7676

7777
# ── Timeouts & Limits ────────────────────────────────────────
7878
SWARM_MAX_TURNS = 500

examples/agents/118_adaptive_loop_showcase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
The LLM drives the retry loop; validation is purely deterministic.
1919
Every tool call (each attempt + verdict) is logged under one execution
20-
ID and visible in the UI at http://localhost:6767.
20+
ID and visible in the UI at http://localhost:8080.
2121
2222
This is the correct Agentspan adaptive loop pattern — not Python
2323
coordinating multiple runtime.run() calls, but the agent itself
@@ -191,7 +191,7 @@ def main(destination: str) -> None:
191191

192192
print(f"Status: {result.status}")
193193
print(f"Execution ID: {result.execution_id}")
194-
print(f"View at: http://localhost:6767/execution/{result.execution_id}")
194+
print(f"View at: http://localhost:8080/execution/{result.execution_id}")
195195
print(f"Turns used: {result.turns_used if hasattr(result, 'turns_used') else 'see UI'}")
196196

197197
# Show the final itinerary

examples/agents/119_research_report_pae_replan.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- quality check is 100% deterministic (word count + topic presence) — no LLM judge.
2828
2929
What you will see in the UI:
30-
http://localhost:6767/execution/<id>
30+
http://localhost:8080/execution/<id>
3131
→ All iterations under one workflow ID.
3232
→ FORK_JOIN branches for parallel section writes inside each sub-workflow.
3333
→ Quality improvements iteration by iteration.
@@ -613,7 +613,7 @@ def main(argv: list[str]) -> None:
613613
print("starting PAE-replan loop...")
614614
execution_id = start_execution(topic, WORK_DIR)
615615
print(f" execution_id: {execution_id}")
616-
print(f" view: http://localhost:6767/execution/{execution_id}\n")
616+
print(f" view: http://localhost:8080/execution/{execution_id}\n")
617617

618618
print("polling until done (all sections pass or max iterations reached)...\n")
619619
wf = poll_until_done(execution_id)

examples/agents/12_long_running.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
# time.sleep(1)
5757
# else:
5858
# print("\nAgent still running. Check the Conductor UI:")
59-
# print(f" http://localhost:6767/execution/{handle.execution_id}")
59+
# print(f" http://localhost:8080/execution/{handle.execution_id}")
6060

examples/agents/62_coding_agent_openai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
python 62_coding_agent_openai.py
3232
3333
Environment variables:
34-
AGENTSPAN_SERVER_URL — Agentspan server (default: http://localhost:6767/api)
34+
AGENTSPAN_SERVER_URL — Agentspan server (default: http://localhost:8080/api)
3535
AGENTSPAN_LLM_MODEL — override model (default: openai/gpt-4o)
3636
OPENAI_API_KEY — required for default OpenAI model
3737
CODING_AGENT_CWD — working directory for file ops (default: current dir)

examples/agents/74_cli_error_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Requirements:
99
- Conductor server with LLM support
10-
- AGENTSPAN_SERVER_URL (e.g. http://localhost:6767/api)
10+
- AGENTSPAN_SERVER_URL (e.g. http://localhost:8080/api)
1111
- AGENTSPAN_LLM_MODEL (e.g. openai/gpt-4o-mini)
1212
"""
1313

examples/agents/76_wait_for_message_streaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
drives the conversation by sending messages and reading streamed events.
1414
1515
Requirements:
16-
- AgentSpan server running at http://localhost:6767
16+
- AgentSpan server running at http://localhost:8080
1717
- AGENTSPAN_SERVER_URL=http://localhost:8080/api as environment variable
1818
- AGENTSPAN_LLM_MODEL=openai/gpt-4o-mini as environment variable
1919
"""

examples/agents/77_kafka_consumer_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
Requirements:
1818
- Kafka broker on localhost:9092 with topic le_random_topic
19-
- AgentSpan server running at http://localhost:6767
19+
- AgentSpan server running at http://localhost:8080
2020
- AGENTSPAN_SERVER_URL=http://localhost:8080/api as environment variable
2121
- AGENTSPAN_LLM_MODEL=openai/gpt-4o-mini as environment variable
2222
- confluent-kafka (uv pip install confluent-kafka)

examples/agents/78_approval_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
blocks on flag_for_approval until the operator responds.
3535
3636
Requirements:
37-
- AgentSpan server running at http://localhost:6767
37+
- AgentSpan server running at http://localhost:8080
3838
- AGENTSPAN_SERVER_URL=http://localhost:8080/api as environment variable
3939
- AGENTSPAN_LLM_MODEL=openai/gpt-4o-mini as environment variable
4040
"""

0 commit comments

Comments
 (0)