From 2e0a49bc12921f5ba6b7a0e9b6681700d9f6df47 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 20 Apr 2026 10:56:23 -0700 Subject: [PATCH] docs(config): add cf_text trunk service backend to llm.yaml.example Documents the cf-orch allocation pattern (cf_text openai_compat backend with cf_orch block). Snipe's trust query builder can route through cf-text when CF_ORCH_URL is set, rather than hitting ollama directly. --- config/llm.yaml.example | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/config/llm.yaml.example b/config/llm.yaml.example index 23a0972..ddd910c 100644 --- a/config/llm.yaml.example +++ b/config/llm.yaml.example @@ -39,6 +39,21 @@ backends: # service: ollama # ttl_s: 300 + # ── cf-orch trunk services ───────────────────────────────────────────────── + # Allocate via cf-orch; the router calls the allocated service directly. + # Set CF_ORCH_URL (env) or url below to activate. + cf_text: + type: openai_compat + enabled: false + base_url: http://localhost:8008/v1 + model: __auto__ + api_key: any + supports_images: false + cf_orch: + service: cf-text + model_candidates: [] + ttl_s: 3600 + fallback_order: - anthropic - openai