From 16a883526b6d1010cc77fd14a1ba7b4036611005 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Wed, 11 Feb 2026 17:44:33 -0800 Subject: [PATCH] Z.ai: readme --- docs/README.md | 3 ++- kb/modules/AIX.md | 1 + kb/systems/client-side-fetch.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index 0db8c5312..d1c2cc165 100644 --- a/docs/README.md +++ b/docs/README.md @@ -29,7 +29,8 @@ How to set up AI models and features in big-AGI. [OpenPipe](https://app.openpipe.ai/settings), [Perplexity](https://www.perplexity.ai/settings/api), [TogetherAI](https://api.together.xyz/settings/api-keys), - [xAI](http://x.ai/api) + [xAI](http://x.ai/api), + [Z.ai](https://z.ai/) - **[Azure OpenAI](config-azure-openai.md)** guide - **FireworksAI** ([API keys](https://fireworks.ai/account/api-keys), via custom OpenAI endpoint: https://api.fireworks.ai/inference) - **[OpenRouter](config-openrouter.md)** guide diff --git a/kb/modules/AIX.md b/kb/modules/AIX.md index 090305a2e..ad8ac3627 100644 --- a/kb/modules/AIX.md +++ b/kb/modules/AIX.md @@ -37,6 +37,7 @@ Built with tRPC, it manages the lifecycle of AI-generated content from request t | Perplexity | ✅ | ❌ (rejected) | | ✅ | Yes + 📦 | | | TogetherAI | ✅ | ✅ | | ✅ | Yes + 📦 | | | xAI | | | | | | | +| Z.ai | ✅ | ✅ | Img: ✅ | ✅ | Yes + 📦 | Thinking mode | | Ollama (2) | ❌ (broken) | ? | | | | | Notes: diff --git a/kb/systems/client-side-fetch.md b/kb/systems/client-side-fetch.md index e9855627b..1fd6934c0 100644 --- a/kb/systems/client-side-fetch.md +++ b/kb/systems/client-side-fetch.md @@ -6,7 +6,7 @@ Client-Side Fetch (CSF) enables direct browser-to-API communication, bypassing t CSF is implemented as an opt-in setting stored as `csf: boolean` in each vendor's service settings. The vendor interface exposes `csfAvailable?: (setup) => boolean` to determine if CSF can be enabled (typically checking if an API key or host is configured). The actual execution happens in `aix.client.direct-chatGenerate.ts` which dynamically imports when CSF is active, making direct fetch calls using the same wire protocols as the server. -All 16 supported vendors (OpenAI, Anthropic, Gemini, Ollama, LocalAI, Deepseek, Groq, Mistral, xAI, OpenRouter, Perplexity, Together AI, Alibaba, Moonshot, OpenPipe, LM Studio) support CSF. Cloud vendors require CORS support from the API provider (all tested vendors return `access-control-allow-origin: *`). Local vendors (Ollama, LocalAI, LM Studio) require CORS to be enabled on the local server. +All 17 supported vendors (OpenAI, Anthropic, Gemini, Ollama, LocalAI, Deepseek, Groq, Mistral, xAI, OpenRouter, Perplexity, Together AI, Alibaba, Moonshot, OpenPipe, LM Studio, Z.ai) support CSF. Cloud vendors require CORS support from the API provider (all tested vendors return `access-control-allow-origin: *`). Local vendors (Ollama, LocalAI, LM Studio) require CORS to be enabled on the local server. ## UI