From b7dbd0fbea14966345834c4e759c8cf14f74281c Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Tue, 23 Dec 2025 17:32:59 -0800 Subject: [PATCH] rename arch_config to config.yaml --- .../{arch_config.yaml => config.yaml} | 0 .../weather_forcecast_service/docker-compose.yaml | 2 +- demos/samples_java/weather_forcecast_service/run_demo.sh | 4 ++-- .../currency_exchange/{arch_config.yaml => config.yaml} | 0 .../samples_python/currency_exchange/docker-compose.yaml | 2 +- demos/samples_python/currency_exchange/run_demo.sh | 4 ++-- .../{arch_config.yaml => config.yaml} | 0 .../multi_turn_rag_agent/docker-compose.yaml | 2 +- demos/samples_python/multi_turn_rag_agent/run_demo.sh | 4 ++-- .../stock_quote/{arch_config.yaml => config.yaml} | 0 demos/samples_python/stock_quote/docker-compose.yaml | 2 +- demos/samples_python/stock_quote/run_demo.sh | 4 ++-- .../weather_forecast/{arch_config.yaml => config.yaml} | 0 .../weather_forecast/docker-compose-honeycomb.yaml | 2 +- .../weather_forecast/docker-compose-jaeger.yaml | 2 +- .../weather_forecast/docker-compose-logfire.yaml | 2 +- .../weather_forecast/docker-compose-signoz.yaml | 2 +- demos/samples_python/weather_forecast/docker-compose.yaml | 2 +- demos/samples_python/weather_forecast/run_demo.sh | 4 ++-- demos/shared/chatbot_ui/common.py | 4 ++-- demos/shared/test_runner/run_demo_tests.sh | 2 +- demos/use_cases/README.md | 4 ++-- .../llm_routing/{arch_config.yaml => config.yaml} | 0 demos/use_cases/llm_routing/docker-compose.yaml | 2 +- demos/use_cases/llm_routing/run_demo.sh | 4 ++-- demos/use_cases/mcp_filter/README.md | 6 +++--- .../mcp_filter/{arch_config.yaml => config.yaml} | 0 demos/use_cases/mcp_filter/docker-compose.yaml | 4 ++-- demos/use_cases/model_choice_with_test_harness/README.md | 4 ++-- demos/use_cases/ollama/{arch_config.yaml => config.yaml} | 0 demos/use_cases/ollama/docker-compose.yaml | 2 +- demos/use_cases/ollama/docker-compose_honeycomb.yaml | 2 +- demos/use_cases/ollama/run_demo.sh | 4 ++-- demos/use_cases/preference_based_routing/README.md | 4 ++-- .../{arch_config.yaml => config.yaml} | 0 .../preference_based_routing/docker-compose.yaml | 2 +- .../spotify_bearer_auth/{arch_config.yaml => config.yaml} | 0 demos/use_cases/spotify_bearer_auth/docker-compose.yaml | 2 +- demos/use_cases/spotify_bearer_auth/run_demo.sh | 4 ++-- demos/use_cases/travel_agents/README.md | 8 ++++---- .../guides/includes/{arch_config.yaml => config.yaml} | 0 tests/archgw/{arch_config.yaml => config.yaml} | 0 42 files changed, 48 insertions(+), 48 deletions(-) rename demos/samples_java/weather_forcecast_service/{arch_config.yaml => config.yaml} (100%) rename demos/samples_python/currency_exchange/{arch_config.yaml => config.yaml} (100%) rename demos/samples_python/multi_turn_rag_agent/{arch_config.yaml => config.yaml} (100%) rename demos/samples_python/stock_quote/{arch_config.yaml => config.yaml} (100%) rename demos/samples_python/weather_forecast/{arch_config.yaml => config.yaml} (100%) rename demos/use_cases/llm_routing/{arch_config.yaml => config.yaml} (100%) rename demos/use_cases/mcp_filter/{arch_config.yaml => config.yaml} (100%) rename demos/use_cases/ollama/{arch_config.yaml => config.yaml} (100%) rename demos/use_cases/preference_based_routing/{arch_config.yaml => config.yaml} (100%) rename demos/use_cases/spotify_bearer_auth/{arch_config.yaml => config.yaml} (100%) rename docs/source/guides/includes/{arch_config.yaml => config.yaml} (100%) rename tests/archgw/{arch_config.yaml => config.yaml} (100%) diff --git a/demos/samples_java/weather_forcecast_service/arch_config.yaml b/demos/samples_java/weather_forcecast_service/config.yaml similarity index 100% rename from demos/samples_java/weather_forcecast_service/arch_config.yaml rename to demos/samples_java/weather_forcecast_service/config.yaml diff --git a/demos/samples_java/weather_forcecast_service/docker-compose.yaml b/demos/samples_java/weather_forcecast_service/docker-compose.yaml index 61bebd4c..6dd1d419 100644 --- a/demos/samples_java/weather_forcecast_service/docker-compose.yaml +++ b/demos/samples_java/weather_forcecast_service/docker-compose.yaml @@ -18,7 +18,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml jaeger: build: diff --git a/demos/samples_java/weather_forcecast_service/run_demo.sh b/demos/samples_java/weather_forcecast_service/run_demo.sh index eb47dce6..e04b737d 100644 --- a/demos/samples_java/weather_forcecast_service/run_demo.sh +++ b/demos/samples_java/weather_forcecast_service/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start developer services echo "Starting Network Agent using Docker Compose..." diff --git a/demos/samples_python/currency_exchange/arch_config.yaml b/demos/samples_python/currency_exchange/config.yaml similarity index 100% rename from demos/samples_python/currency_exchange/arch_config.yaml rename to demos/samples_python/currency_exchange/config.yaml diff --git a/demos/samples_python/currency_exchange/docker-compose.yaml b/demos/samples_python/currency_exchange/docker-compose.yaml index ee5465a5..c02110dd 100644 --- a/demos/samples_python/currency_exchange/docker-compose.yaml +++ b/demos/samples_python/currency_exchange/docker-compose.yaml @@ -10,7 +10,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml jaeger: build: diff --git a/demos/samples_python/currency_exchange/run_demo.sh b/demos/samples_python/currency_exchange/run_demo.sh index eb47dce6..e04b737d 100644 --- a/demos/samples_python/currency_exchange/run_demo.sh +++ b/demos/samples_python/currency_exchange/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start developer services echo "Starting Network Agent using Docker Compose..." diff --git a/demos/samples_python/multi_turn_rag_agent/arch_config.yaml b/demos/samples_python/multi_turn_rag_agent/config.yaml similarity index 100% rename from demos/samples_python/multi_turn_rag_agent/arch_config.yaml rename to demos/samples_python/multi_turn_rag_agent/config.yaml diff --git a/demos/samples_python/multi_turn_rag_agent/docker-compose.yaml b/demos/samples_python/multi_turn_rag_agent/docker-compose.yaml index 0bcbdbfd..739bdde0 100644 --- a/demos/samples_python/multi_turn_rag_agent/docker-compose.yaml +++ b/demos/samples_python/multi_turn_rag_agent/docker-compose.yaml @@ -21,4 +21,4 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml diff --git a/demos/samples_python/multi_turn_rag_agent/run_demo.sh b/demos/samples_python/multi_turn_rag_agent/run_demo.sh index b24a11d5..58200de5 100644 --- a/demos/samples_python/multi_turn_rag_agent/run_demo.sh +++ b/demos/samples_python/multi_turn_rag_agent/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start Network Agent echo "Starting HR Agent using Docker Compose..." diff --git a/demos/samples_python/stock_quote/arch_config.yaml b/demos/samples_python/stock_quote/config.yaml similarity index 100% rename from demos/samples_python/stock_quote/arch_config.yaml rename to demos/samples_python/stock_quote/config.yaml diff --git a/demos/samples_python/stock_quote/docker-compose.yaml b/demos/samples_python/stock_quote/docker-compose.yaml index a862224a..b39b59bf 100644 --- a/demos/samples_python/stock_quote/docker-compose.yaml +++ b/demos/samples_python/stock_quote/docker-compose.yaml @@ -10,7 +10,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml jaeger: build: diff --git a/demos/samples_python/stock_quote/run_demo.sh b/demos/samples_python/stock_quote/run_demo.sh index eb47dce6..e04b737d 100644 --- a/demos/samples_python/stock_quote/run_demo.sh +++ b/demos/samples_python/stock_quote/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start developer services echo "Starting Network Agent using Docker Compose..." diff --git a/demos/samples_python/weather_forecast/arch_config.yaml b/demos/samples_python/weather_forecast/config.yaml similarity index 100% rename from demos/samples_python/weather_forecast/arch_config.yaml rename to demos/samples_python/weather_forecast/config.yaml diff --git a/demos/samples_python/weather_forecast/docker-compose-honeycomb.yaml b/demos/samples_python/weather_forecast/docker-compose-honeycomb.yaml index 5b1612e6..f17c45b7 100644 --- a/demos/samples_python/weather_forecast/docker-compose-honeycomb.yaml +++ b/demos/samples_python/weather_forecast/docker-compose-honeycomb.yaml @@ -20,7 +20,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml otel-collector: build: diff --git a/demos/samples_python/weather_forecast/docker-compose-jaeger.yaml b/demos/samples_python/weather_forecast/docker-compose-jaeger.yaml index dab610bf..4baf5a59 100644 --- a/demos/samples_python/weather_forecast/docker-compose-jaeger.yaml +++ b/demos/samples_python/weather_forecast/docker-compose-jaeger.yaml @@ -20,7 +20,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml jaeger: build: diff --git a/demos/samples_python/weather_forecast/docker-compose-logfire.yaml b/demos/samples_python/weather_forecast/docker-compose-logfire.yaml index 164862c2..f3ac97d0 100644 --- a/demos/samples_python/weather_forecast/docker-compose-logfire.yaml +++ b/demos/samples_python/weather_forecast/docker-compose-logfire.yaml @@ -20,7 +20,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml otel-collector: build: diff --git a/demos/samples_python/weather_forecast/docker-compose-signoz.yaml b/demos/samples_python/weather_forecast/docker-compose-signoz.yaml index a40d32f0..e6ce8857 100644 --- a/demos/samples_python/weather_forecast/docker-compose-signoz.yaml +++ b/demos/samples_python/weather_forecast/docker-compose-signoz.yaml @@ -23,7 +23,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml prometheus: build: diff --git a/demos/samples_python/weather_forecast/docker-compose.yaml b/demos/samples_python/weather_forecast/docker-compose.yaml index abb69654..51cf0d6d 100644 --- a/demos/samples_python/weather_forecast/docker-compose.yaml +++ b/demos/samples_python/weather_forecast/docker-compose.yaml @@ -20,4 +20,4 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml diff --git a/demos/samples_python/weather_forecast/run_demo.sh b/demos/samples_python/weather_forecast/run_demo.sh index a6f846fe..498a5ab5 100644 --- a/demos/samples_python/weather_forecast/run_demo.sh +++ b/demos/samples_python/weather_forecast/run_demo.sh @@ -73,8 +73,8 @@ start_demo() { fi # Step 4: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 5: Start Network Agent with the chosen Docker Compose file echo "Starting Network Agent with $COMPOSE_FILE..." diff --git a/demos/shared/chatbot_ui/common.py b/demos/shared/chatbot_ui/common.py index 1de8f94c..ae9c12a8 100644 --- a/demos/shared/chatbot_ui/common.py +++ b/demos/shared/chatbot_ui/common.py @@ -159,7 +159,7 @@ def convert_prompt_target_to_openai_format(target): def get_prompt_targets(): try: - with open(os.getenv("ARCH_CONFIG", "arch_config.yaml"), "r") as file: + with open(os.getenv("ARCH_CONFIG", "config.yaml"), "r") as file: config = yaml.safe_load(file) available_tools = [] @@ -181,7 +181,7 @@ def get_prompt_targets(): def get_llm_models(): try: - with open(os.getenv("ARCH_CONFIG", "arch_config.yaml"), "r") as file: + with open(os.getenv("ARCH_CONFIG", "config.yaml"), "r") as file: config = yaml.safe_load(file) available_models = [""] diff --git a/demos/shared/test_runner/run_demo_tests.sh b/demos/shared/test_runner/run_demo_tests.sh index 2f44d3e0..1379b629 100644 --- a/demos/shared/test_runner/run_demo_tests.sh +++ b/demos/shared/test_runner/run_demo_tests.sh @@ -21,7 +21,7 @@ do echo "****************************************" cd ../../$demo echo "starting archgw" - archgw up arch_config.yaml + archgw up config.yaml echo "starting docker containers" # only execute docker compose if demo is use_cases/preference_based_routing if [ "$demo" == "use_cases/preference_based_routing" ]; then diff --git a/demos/use_cases/README.md b/demos/use_cases/README.md index 30cce822..69cf4ac7 100644 --- a/demos/use_cases/README.md +++ b/demos/use_cases/README.md @@ -1,6 +1,6 @@ ### Use Arch for (Model-based) LLM Routing Step 1. Create arch config file -Create `arch_config.yaml` file with following content: +Create `config.yaml` file with following content: ```yaml version: v0.1.0 @@ -28,7 +28,7 @@ Once the config file is created ensure that you have env vars setup for `MISTRAL Start arch gateway, ``` -$ archgw up arch_config.yaml +$ archgw up config.yaml 2024-12-05 11:24:51,288 - cli.main - INFO - Starting archgw cli version: 0.1.5 2024-12-05 11:24:51,825 - cli.utils - INFO - Schema validation successful! 2024-12-05 11:24:51,825 - cli.main - INFO - Starting arch model server and arch gateway diff --git a/demos/use_cases/llm_routing/arch_config.yaml b/demos/use_cases/llm_routing/config.yaml similarity index 100% rename from demos/use_cases/llm_routing/arch_config.yaml rename to demos/use_cases/llm_routing/config.yaml diff --git a/demos/use_cases/llm_routing/docker-compose.yaml b/demos/use_cases/llm_routing/docker-compose.yaml index 6c5d2b68..3b294076 100644 --- a/demos/use_cases/llm_routing/docker-compose.yaml +++ b/demos/use_cases/llm_routing/docker-compose.yaml @@ -2,7 +2,7 @@ services: open-web-ui: - image: ghcr.io/open-webui/open-webui:main + image: dyrnq/open-webui:main restart: always ports: - "8080:8080" diff --git a/demos/use_cases/llm_routing/run_demo.sh b/demos/use_cases/llm_routing/run_demo.sh index c0eafee6..9bf9e515 100644 --- a/demos/use_cases/llm_routing/run_demo.sh +++ b/demos/use_cases/llm_routing/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start LLM Routing echo "Starting LLM Routing using Docker Compose..." diff --git a/demos/use_cases/mcp_filter/README.md b/demos/use_cases/mcp_filter/README.md index 508060ae..386592ee 100644 --- a/demos/use_cases/mcp_filter/README.md +++ b/demos/use_cases/mcp_filter/README.md @@ -63,7 +63,7 @@ curl -X POST http://localhost:8001/v1/chat/completions \ ## Configuration -The `arch_config.yaml` defines how agents are connected: +The `config.yaml` defines how agents are connected: ```yaml filters: @@ -92,7 +92,7 @@ filters: ## Additional Configuration -See `arch_config.yaml` for the complete filter chain setup. The MCP filters use default settings: +See `config.yaml` for the complete filter chain setup. The MCP filters use default settings: - `type: mcp` (default) - `transport: streamable-http` (default) - Tool name defaults to filter ID @@ -119,4 +119,4 @@ curl -X POST http://localhost:8001/v1/chat/completions \ ## Additional Resources - See `sample_queries.md` for more example queries -- See `arch_config.yaml` for complete configuration details +- See `config.yaml` for complete configuration details diff --git a/demos/use_cases/mcp_filter/arch_config.yaml b/demos/use_cases/mcp_filter/config.yaml similarity index 100% rename from demos/use_cases/mcp_filter/arch_config.yaml rename to demos/use_cases/mcp_filter/config.yaml diff --git a/demos/use_cases/mcp_filter/docker-compose.yaml b/demos/use_cases/mcp_filter/docker-compose.yaml index e6644321..f83d8796 100644 --- a/demos/use_cases/mcp_filter/docker-compose.yaml +++ b/demos/use_cases/mcp_filter/docker-compose.yaml @@ -19,10 +19,10 @@ services: - "12000:12000" - "8001:8001" environment: - - ARCH_CONFIG_PATH=/config/arch_config.yaml + - ARCH_CONFIG_PATH=/config/config.yaml - OPENAI_API_KEY=${OPENAI_API_KEY:?OPENAI_API_KEY environment variable is required but not set} volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml - /etc/ssl/cert.pem:/etc/ssl/cert.pem jaeger: build: diff --git a/demos/use_cases/model_choice_with_test_harness/README.md b/demos/use_cases/model_choice_with_test_harness/README.md index 75cc9540..8548c21c 100644 --- a/demos/use_cases/model_choice_with_test_harness/README.md +++ b/demos/use_cases/model_choice_with_test_harness/README.md @@ -73,7 +73,7 @@ python bench.py #### Example Proxy Config -See `arch_config.yaml` for a sample configuration mapping aliases to provider models. +See `config.yaml` for a sample configuration mapping aliases to provider models. --- @@ -108,7 +108,7 @@ See `arch_config.yaml` for a sample configuration mapping aliases to provider mo - `bench.py` — Minimal Python test harness - `evals_summarize.yaml` — Example test fixtures - `pyproject.toml` — Poetry environment file -- `arch_config.yaml` — Sample archgw config (if present) +- `config.yaml` — Sample archgw config (if present) --- diff --git a/demos/use_cases/ollama/arch_config.yaml b/demos/use_cases/ollama/config.yaml similarity index 100% rename from demos/use_cases/ollama/arch_config.yaml rename to demos/use_cases/ollama/config.yaml diff --git a/demos/use_cases/ollama/docker-compose.yaml b/demos/use_cases/ollama/docker-compose.yaml index 44fb20b7..093c7491 100644 --- a/demos/use_cases/ollama/docker-compose.yaml +++ b/demos/use_cases/ollama/docker-compose.yaml @@ -10,7 +10,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml jaeger: build: diff --git a/demos/use_cases/ollama/docker-compose_honeycomb.yaml b/demos/use_cases/ollama/docker-compose_honeycomb.yaml index ab0df80d..01853750 100644 --- a/demos/use_cases/ollama/docker-compose_honeycomb.yaml +++ b/demos/use_cases/ollama/docker-compose_honeycomb.yaml @@ -10,7 +10,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml otel-collector: build: diff --git a/demos/use_cases/ollama/run_demo.sh b/demos/use_cases/ollama/run_demo.sh index eb47dce6..e04b737d 100644 --- a/demos/use_cases/ollama/run_demo.sh +++ b/demos/use_cases/ollama/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start developer services echo "Starting Network Agent using Docker Compose..." diff --git a/demos/use_cases/preference_based_routing/README.md b/demos/use_cases/preference_based_routing/README.md index e9bb37d0..2c8938ed 100644 --- a/demos/use_cases/preference_based_routing/README.md +++ b/demos/use_cases/preference_based_routing/README.md @@ -1,5 +1,5 @@ # Usage based LLM Routing -This demo shows how you can use user preferences to route user prompts to appropriate llm. See [arch_config.yaml](arch_config.yaml) for details on how you can define user preferences. +This demo shows how you can use user preferences to route user prompts to appropriate llm. See [config.yaml](config.yaml) for details on how you can define user preferences. ## How to start the demo @@ -15,7 +15,7 @@ Make sure your machine is up to date with [latest version of archgw]([url](https ```bash (venv) $ archgw up --service archgw --foreground 2025-05-30 18:00:09,953 - cli.main - INFO - Starting archgw cli version: 0.4.0 -2025-05-30 18:00:09,953 - cli.main - INFO - Validating /Users/adilhafeez/src/intelligent-prompt-gateway/demos/use_cases/preference_based_routing/arch_config.yaml +2025-05-30 18:00:09,953 - cli.main - INFO - Validating /Users/adilhafeez/src/intelligent-prompt-gateway/demos/use_cases/preference_based_routing/config.yaml 2025-05-30 18:00:10,422 - cli.core - INFO - Starting arch gateway, image name: archgw, tag: katanemo/plano:0.4.0 2025-05-30 18:00:10,662 - cli.core - INFO - archgw status: running, health status: starting 2025-05-30 18:00:11,712 - cli.core - INFO - archgw status: running, health status: starting diff --git a/demos/use_cases/preference_based_routing/arch_config.yaml b/demos/use_cases/preference_based_routing/config.yaml similarity index 100% rename from demos/use_cases/preference_based_routing/arch_config.yaml rename to demos/use_cases/preference_based_routing/config.yaml diff --git a/demos/use_cases/preference_based_routing/docker-compose.yaml b/demos/use_cases/preference_based_routing/docker-compose.yaml index c0f30d5e..8387ccac 100644 --- a/demos/use_cases/preference_based_routing/docker-compose.yaml +++ b/demos/use_cases/preference_based_routing/docker-compose.yaml @@ -1,7 +1,7 @@ services: open-web-ui: - image: ghcr.io/open-webui/open-webui:main + image: dyrnq/open-webui:main restart: always ports: - "8080:8080" diff --git a/demos/use_cases/spotify_bearer_auth/arch_config.yaml b/demos/use_cases/spotify_bearer_auth/config.yaml similarity index 100% rename from demos/use_cases/spotify_bearer_auth/arch_config.yaml rename to demos/use_cases/spotify_bearer_auth/config.yaml diff --git a/demos/use_cases/spotify_bearer_auth/docker-compose.yaml b/demos/use_cases/spotify_bearer_auth/docker-compose.yaml index ee5465a5..c02110dd 100644 --- a/demos/use_cases/spotify_bearer_auth/docker-compose.yaml +++ b/demos/use_cases/spotify_bearer_auth/docker-compose.yaml @@ -10,7 +10,7 @@ services: extra_hosts: - "host.docker.internal:host-gateway" volumes: - - ./arch_config.yaml:/app/arch_config.yaml + - ./config.yaml:/app/config.yaml jaeger: build: diff --git a/demos/use_cases/spotify_bearer_auth/run_demo.sh b/demos/use_cases/spotify_bearer_auth/run_demo.sh index eb47dce6..e04b737d 100644 --- a/demos/use_cases/spotify_bearer_auth/run_demo.sh +++ b/demos/use_cases/spotify_bearer_auth/run_demo.sh @@ -19,8 +19,8 @@ start_demo() { fi # Step 3: Start Arch - echo "Starting Arch with arch_config.yaml..." - archgw up arch_config.yaml + echo "Starting Arch with config.yaml..." + archgw up config.yaml # Step 4: Start developer services echo "Starting Network Agent using Docker Compose..." diff --git a/demos/use_cases/travel_agents/README.md b/demos/use_cases/travel_agents/README.md index 60e8d2f9..ec762872 100644 --- a/demos/use_cases/travel_agents/README.md +++ b/demos/use_cases/travel_agents/README.md @@ -60,7 +60,7 @@ In a new terminal: ```bash cd /path/to/travel_agents -plano up arch_config.yaml +plano up config.yaml ``` The gateway will start on port 8001 and route requests to the appropriate agents. @@ -159,7 +159,7 @@ Both agents run as Docker containers and communicate with Plano via `host.docker ``` travel_agents/ -├── arch_config.yaml # Plano configuration +├── config.yaml # Plano configuration ├── docker-compose.yaml # Docker services orchestration ├── Dockerfile # Multi-agent container image ├── start_agents.sh # Quick start script @@ -173,7 +173,7 @@ travel_agents/ ## Configuration Files -### arch_config.yaml +### config.yaml Defines the two agents, their descriptions, and routing configuration. The agent router uses these descriptions to intelligently route requests. @@ -195,7 +195,7 @@ Orchestrates the deployment of: **Plano won't start** - Verify Plano is installed: `plano --version` - Ensure you're in the travel_agents directory -- Check arch_config.yaml is valid +- Check config.yaml is valid **No response from agents** - Verify all containers are running: `docker compose ps` diff --git a/docs/source/guides/includes/arch_config.yaml b/docs/source/guides/includes/config.yaml similarity index 100% rename from docs/source/guides/includes/arch_config.yaml rename to docs/source/guides/includes/config.yaml diff --git a/tests/archgw/arch_config.yaml b/tests/archgw/config.yaml similarity index 100% rename from tests/archgw/arch_config.yaml rename to tests/archgw/config.yaml