From 488fa71891b014153ed7292ea5694ed1c75786e6 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Fri, 27 Feb 2026 00:09:00 -0800 Subject: [PATCH] feat: add vllm_research backend and update research_fallback_order --- config/llm.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/config/llm.yaml b/config/llm.yaml index 961f030..0f08746 100644 --- a/config/llm.yaml +++ b/config/llm.yaml @@ -45,6 +45,13 @@ backends: model: __auto__ supports_images: false type: openai_compat + vllm_research: + api_key: '' + base_url: http://host.docker.internal:8000/v1 + enabled: true + model: __auto__ + supports_images: false + type: openai_compat fallback_order: - ollama - claude_code @@ -53,7 +60,7 @@ fallback_order: - anthropic research_fallback_order: - claude_code -- vllm +- vllm_research - ollama_research - github_copilot - anthropic