mirror of
https://github.com/katanemo/plano.git
synced 2026-07-14 16:22:12 +02:00
Phase 1 - Remove dead/duplicate content:
- Delete demos/samples_java/ (incomplete Java demo)
- Delete demos/shared/chatbot_ui/ (replaced by AnythingLLM)
- Delete demos/shared/grafana/, prometheus/, logfire/, honeycomb/, signoz/
(legacy observability stacks; only jaeger is retained)
- Delete variant docker-compose files (honeycomb, logfire, signoz, jaeger)
- Delete demos/use_cases/spotify_bearer_auth/run_demo.sh (stale script)
Phase 2 - Restructure into semantic categories:
- getting_started/ : weather_forecast, llm_gateway
- agent_orchestration/ : travel_agents, multi_agent_crewai_langchain
- llm_routing/ : model_alias_routing, preference_based_routing, claude_code_router
- filter_chains/ : http_filter, mcp_filter
- integrations/ : ollama, spotify_bearer_auth
- advanced/ : model_choice_test_harness, multi_turn_rag,
currency_exchange, stock_quote
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
version: v0.1.0
|
|
|
|
listeners:
|
|
ingress_traffic:
|
|
address: 0.0.0.0
|
|
port: 10000
|
|
message_format: openai
|
|
timeout: 30s
|
|
|
|
endpoints:
|
|
rag_energy_source_agent:
|
|
endpoint: host.docker.internal:18083
|
|
connect_timeout: 0.005s
|
|
|
|
llm_providers:
|
|
- access_key: $OPENAI_API_KEY
|
|
model: openai/gpt-4o-mini
|
|
default: true
|
|
|
|
system_prompt: |
|
|
You are a helpful assistant and can offer information about energy sources.
|
|
You will get a JSON object with energy_source and consideration fields. Focus on answering the querstion using those fields.
|
|
Keep your responses to just three main points to make it easy for the reader to digest the information
|
|
|
|
prompt_targets:
|
|
- name: get_info_for_energy_source
|
|
description: get information about an energy source
|
|
parameters:
|
|
- name: energy_source
|
|
type: str
|
|
description: a source of energy
|
|
required: true
|
|
enum: [renewable, fossil]
|
|
- name: consideration
|
|
type: str
|
|
description: a specific type of consideration for an energy source
|
|
enum: [cost, economic, technology]
|
|
endpoint:
|
|
name: rag_energy_source_agent
|
|
path: /agent/energy_source_info
|
|
http_method: POST
|
|
|
|
- name: default_target
|
|
default: true
|
|
description: This is the default target for all unmatched prompts.
|
|
endpoint:
|
|
name: rag_energy_source_agent
|
|
path: /default_target
|
|
http_method: POST
|
|
system_prompt: |
|
|
You are a helpful assistant! Summarize the user's request and provide a helpful response.
|
|
# if it is set to false arch will send response that it received from this prompt target to the user
|
|
# if true arch will forward the response to the default LLM
|
|
auto_llm_dispatch_on_response: false
|
|
|
|
tracing:
|
|
random_sampling: 100
|
|
trace_arch_internal: true
|