fix(hermes-agent): add type: openai to vLLM providers for model listing

Enables /v1/models endpoint query for custom providers (fixes qwen model not showing under qwen-vllm).

Changes:
- Added `type: openai` to `rtx6000-brain` and `qwen-vllm` providers
- Standardized base_url to full FQDN: \*.customer1.svc.cluster.local
- Added context_length to qwen-vllm provider
- Updated models.qwen-vllm base_url and context_length for consistency
This commit is contained in:
sirius0xdev 2026-04-29 16:18:35 +00:00
parent a742d583dd
commit 2548bccfc6

View file

@ -11,12 +11,15 @@ data:
base_url: https://api.x.ai/v1 base_url: https://api.x.ai/v1
providers: providers:
rtx6000-brain: rtx6000-brain:
type: openai
api_key: EMPTY api_key: EMPTY
base_url: http://rtx6000-brain-service:8000/v1 base_url: http://rtx6000-brain-service.customer1.svc.cluster.local:8000/v1
context_length: 131072 context_length: 131072
qwen-vllm: qwen-vllm:
type: openai
api_key: EMPTY api_key: EMPTY
base_url: http://openclaw-brain-service:8000/v1 base_url: http://openclaw-brain-service.customer1.svc.cluster.local:8000/v1
context_length: 131072
fallback_providers: [] fallback_providers: []
credential_pool_strategies: {} credential_pool_strategies: {}
toolsets: toolsets:
@ -331,9 +334,10 @@ data:
context_length: 131072 context_length: 131072
qwen-vllm: qwen-vllm:
provider: openai provider: openai
base_url: http://openclaw-brain-service:8000/v1 base_url: http://openclaw-brain-service.customer1.svc.cluster.local:8000/v1
model: Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16 model: Youssofal/Qwen3.6-27B-Abliterated-Heretic-Uncensored-BF16
api_key: EMPTY api_key: EMPTY
context_length: 131072
rtx6000-vllm: rtx6000-vllm:
provider: openai provider: openai
base_url: http://rtx6000-brain-service.customer1.svc.cluster.local:8000/v1 base_url: http://rtx6000-brain-service.customer1.svc.cluster.local:8000/v1