From 4e7e6fe6bde5febc578acc3642bfae5c9b4a4849 Mon Sep 17 00:00:00 2001 From: oratis Date: Wed, 20 May 2026 15:31:37 +0800 Subject: [PATCH] docs: install requirement reflects 20+ provider support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit README opens the install section with "requires an Anthropic API key" but the next paragraph lists 20+ alternative LLM providers as out-of-the-box. A reader skimming the heading walks away thinking they need Anthropic specifically — they don't, anyone of the 20+ providers (OpenAI, Gemini, DeepSeek, Ollama / local, etc.) works on its own with the right --model or LISA_BASE_URL. Rephrase to "a key for at least one LLM provider" and point at the default + alternatives. Same wording in both READMEs. Closes #9 Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 4 ++-- README.zh-CN.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ce047e8..57b2497 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ She is yours. The code is open source. **This particular Lisa is sovereign.** ## Install -Requires Node ≥ 20 and an Anthropic API key. +Requires Node ≥ 20 and a key for **at least one LLM provider** — Anthropic is the default, but any of the 20+ alternatives listed below works just as well (`--model gpt-4o`, `--model deepseek-chat`, `LISA_BASE_URL=http://localhost:11434/v1` for Ollama, etc.). ```sh git clone https://github.com/oratis/LISA.git @@ -124,7 +124,7 @@ cd LISA npm install npm run build -# Configure your key +# Configure a key — Anthropic is the default model, swap for any provider below mkdir -p ~/.lisa echo 'ANTHROPIC_API_KEY=sk-ant-...' > ~/.lisa/config.env diff --git a/README.zh-CN.md b/README.zh-CN.md index c4c14aa..ffeab3e 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -113,7 +113,7 @@ ## 安装 -要 Node ≥ 20 + Anthropic API key。 +要 Node ≥ 20 + **任一 LLM provider 的 key** —— 默认走 Anthropic,但下面列的 20+ 个 provider 任何一个都行(`--model gpt-4o`、`--model deepseek-chat`、Ollama 走 `LISA_BASE_URL=http://localhost:11434/v1` 等)。 ```sh git clone https://github.com/oratis/LISA.git @@ -121,7 +121,7 @@ cd LISA npm install npm run build -# 配置 key +# 配置 key —— 默认模型走 Anthropic;想换 provider 看下面那张表 mkdir -p ~/.lisa echo 'ANTHROPIC_API_KEY=sk-ant-...' > ~/.lisa/config.env