mirror of
https://github.com/usestrix/strix.git
synced 2026-09-12 23:01:05 +00:00
docs: clarify Novita AI requires LLM_API_BASE in overview
The overview table lists Novita alongside providers that only need STRIX_LLM + LLM_API_KEY, but Novita also requires LLM_API_BASE to point at api.novita.ai/openai. Without this, users copying the generic code block would hit connection errors against api.openai.com. Add a Note callout directing users to the Novita guide for full setup, and mention Novita in the README supported-providers reference line.
This commit is contained in:
parent
b78e0edb7d
commit
0dd0721ce2
2 changed files with 5 additions and 1 deletions
|
|
@ -233,7 +233,7 @@ export STRIX_REASONING_EFFORT="high" # control thinking effort (default: high,
|
|||
- [Anthropic Claude Sonnet 4.6](https://claude.com/platform/api) — `anthropic/claude-sonnet-4-6`
|
||||
- [Google Gemini 3 Pro Preview](https://cloud.google.com/vertex-ai) — `vertex_ai/gemini-3-pro-preview`
|
||||
|
||||
See the [LLM Providers documentation](https://docs.strix.ai/llm-providers/overview) for all supported providers including Vertex AI, Bedrock, Azure, and local models.
|
||||
See the [LLM Providers documentation](https://docs.strix.ai/llm-providers/overview) for all supported providers including Novita AI, Vertex AI, Bedrock, Azure, and local models.
|
||||
|
||||
## Enterprise
|
||||
|
||||
|
|
|
|||
|
|
@ -32,6 +32,10 @@ export STRIX_LLM="openai/gpt-5"
|
|||
export LLM_API_KEY="your-api-key"
|
||||
```
|
||||
|
||||
<Note>
|
||||
**Novita AI** requires an additional `LLM_API_BASE` variable pointing to their OpenAI-compatible endpoint. See the [Novita AI guide](/llm-providers/novita) for full setup instructions.
|
||||
</Note>
|
||||
|
||||
## Local Models
|
||||
|
||||
Run models locally with [Ollama](https://ollama.com), [LM Studio](https://lmstudio.ai), or any OpenAI-compatible server:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue