From 679bb087db6f7ac59215171c213db55a3472aaad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A7=E7=8C=AB=E5=AD=90?= Date: Fri, 6 Feb 2026 02:56:58 +0800 Subject: [PATCH] docs: fix incorrect model.fallback to model.fallbacks in Ollama config (#9384) (#9749) Both English and Chinese documentation had incorrect configuration template using 'fallback' instead of 'fallbacks' in agents.defaults.model config. Co-authored-by: damaozi <1811866786@qq.com> --- docs/providers/ollama.md | 2 +- docs/zh-CN/providers/ollama.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/providers/ollama.md b/docs/providers/ollama.md index fb42e2cc7..25e6d5b2b 100644 --- a/docs/providers/ollama.md +++ b/docs/providers/ollama.md @@ -149,7 +149,7 @@ Once configured, all your Ollama models are available: defaults: { model: { primary: "ollama/llama3.3", - fallback: ["ollama/qwen2.5-coder:32b"], + fallbacks: ["ollama/qwen2.5-coder:32b"], }, }, }, diff --git a/docs/zh-CN/providers/ollama.md b/docs/zh-CN/providers/ollama.md index 091559440..b4ceb777f 100644 --- a/docs/zh-CN/providers/ollama.md +++ b/docs/zh-CN/providers/ollama.md @@ -156,7 +156,7 @@ export OLLAMA_API_KEY="ollama-local" defaults: { model: { primary: "ollama/llama3.3", - fallback: ["ollama/qwen2.5-coder:32b"], + fallbacks: ["ollama/qwen2.5-coder:32b"], }, }, },