| name | pixiu-llm-gateway |
| description | Creates and validates dubbo-go-pixiu LLM gateway conf.yaml. Use for LLM proxy/tokenizer/kvcache filters, llm_meta, vLLM, LMCache, retry/fallback, or Nacos LLM discovery. Do not use for MCP gateway config. |
pixiu-llm-gateway
Purpose
Generate a complete or embeddable LLM gateway conf.yaml that configures Pixiu as a multi-provider HTTP proxy.
When to use
-
Use when:
- Generating or fixing Pixiu LLM gateway
conf.yaml, including LLM proxy/tokenizer/kvcache, llm_meta, retry/fallback, vLLM/LMCache, or Nacos LLM discovery.
-
Do not use for:
- MCP gateway, HTTP-to-Dubbo routes, or implementing new LLM-related filters.
Inputs
Do not generate YAML, write code, create files, or take any implementation action until the user has provided all required inputs. This is a first principle.
If any required input is missing, this turn must only ask for the missing fields in the current input group; do not generate examples, defaults, YAML, code, or final output.
Even if configuration information seems inferable, obvious, or implied by context, you must still ask the user to confirm it. Do not proceed until the user confirms it.
-
Choose upstream mode (required):
- Required:
upstream_mode: static or registry
-
listener (required):
- Defaults:
address.socket_address.address: 0.0.0.0
address.socket_address.port: 8888
-
route_config (required):
- Defaults:
routes[].match.prefix: /v1
routes[].route.cluster: llm
-
dgp.filter.llm.proxy (required):
- Defaults:
config.scheme: http (use https when the upstream is an HTTPS endpoint)
config.timeout: 60s
config.maxIdleConns: 100
config.maxIdleConnsPerHost: 100
config.maxConnsPerHost: 100
-
Static upstream (required when upstream_mode: static):
- Required:
endpoints[].ID
endpoints[].socket_address.address or endpoints[].socket_address.domains
endpoints[].socket_address.port
- Optional:
endpoints[].llm_meta.provider
endpoints[].llm_meta.api_key
endpoints[].llm_meta.retry_policy.config
- Defaults:
clusters[].name: llm
clusters[].lb_policy: RoundRobin
endpoints[].llm_meta.retry_policy.name: NoRetry
endpoints[].llm_meta.fallback: false
endpoints[].llm_meta.health_check_interval: 5000
-
Registry upstream (required when upstream_mode: registry):
- Required:
- Optional:
registries.nacos.group
registries.nacos.namespace
registries.nacos.username
registries.nacos.password
- Defaults:
adapters[].id: llm-registry
adapters[].name: dgp.adapter.llmregistrycenter
registries.nacos.protocol: nacos
registries.nacos.timeout: 5s
registries.nacos.group: DEFAULT_GROUP
-
dgp.filter.llm.tokenizer (optional):
- Defaults:
config.log_to_console: false
-
dgp.filter.ai.kvcache (optional):
- Required:
config.enabled: true (must be set explicitly when enabling kvcache)
config.vllm_endpoint
config.lmcache_endpoint
- Optional:
config.default_model
config.token_cache
config.cache_strategy
- Defaults:
config.request_timeout: 2s
config.lookup_routing_timeout: 50ms
config.hot_window: 5m
config.hot_max_records: 300
config.max_idle_conns: 100
config.max_idle_conns_per_host: 100
config.max_conns_per_host: 100
config.retry.max_attempts: 3
config.retry.base_backoff: 100ms
config.retry.max_backoff: 2s
config.circuit_breaker.failure_threshold: 5
config.circuit_breaker.recovery_timeout: 10s
config.circuit_breaker.half_open_max_calls: 2
Workflow
- Check required Inputs first:
- Read existing config and already provided user information first; do not ask again for information already present or stated.
- Ask one
Inputs group at a time. Each time, output only that group's required fields, with a short explanation after each field.
- If the current group's required fields are incomplete, ask only for the missing fields and do not move to the next group.
- After the current group's required fields are complete, ask whether to fill that group's optional fields; if yes, list those optional fields with short explanations.
- After optional fields are skipped or completed, apply that group's defaults and output default-value information; defaults must not override existing config or user input.
- Read current source before generating YAML:
pkg/common/constant/key.go.
pkg/filter/llm/proxy/filter.go.
pkg/filter/llm/tokenizer/tokenizer.go.
pkg/filter/ai/kvcache/config.go and pkg/filter/ai/kvcache/handlers.go.
pkg/model/llm.go, pkg/model/cluster.go, and pkg/model/base.go.
- Choose static or registry path by
upstream_mode: static uses static_resources.clusters[]; registry uses the LLM registry adapter.
- Generate listener, route, and filters: use HCM to carry the LLM route and HTTP filters; add
dgp.filter.ai.kvcache, tokenizer, and dgp.filter.llm.proxy as needed.
- Generate LLM upstream: static endpoints go under
socket_address and llm_meta; ensure the LLM cluster does not mix in ordinary HTTP endpoints.
Output format
- Show the relevant YAML fragments.
Validation
- Verify LLM filter-chain order:
dgp.filter.ai.kvcache -> dgp.filter.llm.tokenizer -> dgp.filter.llm.proxy; ignore missing filters within this order chain.
- Verify
scheme is under dgp.filter.llm.proxy.config, not under an endpoint; socket_address.domains contains host names only, such as api.openai.com, not full URLs or paths.
- When KV cache is enabled, verify the LMCache-side
instance_id exactly matches the Pixiu endpoint ID.
Examples
Complete LLM route example (conf.yaml):
static_resources:
listeners:
- name: net/http
protocol_type: HTTP
address:
socket_address:
address: 0.0.0.0
port: 8888
filter_chains:
filters:
- name: dgp.filter.httpconnectionmanager
config:
route_config:
routes:
- match:
prefix: /v1
route:
cluster: llm
http_filters:
- name: dgp.filter.ai.kvcache
config:
enabled: true
vllm_endpoint: "http://127.0.0.1:8000"
lmcache_endpoint: "http://127.0.0.1:9000"
default_model: "Qwen2.5-3B-Instruct"
request_timeout: "2s"
lookup_routing_timeout: "50ms"
hot_window: "5m"
Nacos LLM registry mode example (conf.yaml):
static_resources:
listeners:
- name: net/http
protocol_type: HTTP
address:
socket_address:
address: 0.0.0.0
port: 8888
filter_chains:
filters:
- name: dgp.filter.httpconnectionmanager
config:
route_config:
routes:
- match:
prefix: /v1
route:
cluster: llm
http_filters:
- name: dgp.filter.llm.proxy
config:
scheme: http
timeout: "60s"
adapters:
- id: llm-nacos
name: dgp.adapter.llmregistrycenter
config:
registries:
nacos:
protocol: nacos
address: "127.0.0.1:8848"