From 2243724ae95d30713471643a401e205f2bfe7077 Mon Sep 17 00:00:00 2001 From: Matt Johnson Date: Fri, 17 Jul 2026 02:58:32 +0000 Subject: [PATCH] docs(readme): reconcile root README as the single source of truth /README.md (renders on GitHub) and work/README.md (packaged by work/pyproject.toml's readme = "README.md") had cross-drifted: each had two of four correct lines. Root had the correct `cd meshai/work` path and work/-prefixed curl URLs; work/README.md had the correct gemini-3.1-flash-lite model (google retired the gemini-2.x lite tier on this project's API key). Pull the one missing fix (model name) into root/README.md. Verified via diff that these were the only 4 lines (8 diff lines) that ever differed between the two files. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c065bf..f0ca91e 100644 --- a/README.md +++ b/README.md @@ -241,7 +241,7 @@ The curated channel chatter your bot observes is used only as short-term *contex llm: backend: "google" # google | openai | anthropic api_key: "your-api-key" - model: "gemini-2.5-flash" + model: "gemini-3.1-flash-lite" ``` Any OpenAI-compatible endpoint works for local models — point `base_url` at Ollama (`http://localhost:11434/v1`), LiteLLM (`http://localhost:4000/v1`), or Open WebUI.