diff --git a/docs/docs.json b/docs/docs.json
index 23cf23867..2bb8cf2ab 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -35,6 +35,7 @@
"llm-providers/openai",
"llm-providers/anthropic",
"llm-providers/openrouter",
+ "llm-providers/astraflow",
"llm-providers/vertex",
"llm-providers/bedrock",
"llm-providers/azure",
diff --git a/docs/llm-providers/astraflow.mdx b/docs/llm-providers/astraflow.mdx
new file mode 100644
index 000000000..d29a257a4
--- /dev/null
+++ b/docs/llm-providers/astraflow.mdx
@@ -0,0 +1,57 @@
+---
+title: "Astraflow"
+description: "Configure Strix with Astraflow models"
+---
+
+[Astraflow](https://astraflow.ucloud-global.com) by UCloud is an OpenAI-compatible AI model aggregation platform supporting 200+ models.
+
+## Setup
+
+### Global Endpoint
+
+```bash
+export STRIX_LLM="openai/gpt-5.4"
+export LLM_API_KEY="your-astraflow-api-key"
+export LLM_API_BASE="https://api-us-ca.umodelverse.ai/v1"
+```
+
+### China Endpoint
+
+```bash
+export STRIX_LLM="openai/gpt-5.4"
+export LLM_API_KEY="your-astraflow-api-key"
+export LLM_API_BASE="https://api.modelverse.cn/v1"
+```
+
+## Available Models
+
+Astraflow provides access to 200+ models from multiple providers. Use standard model names:
+
+| Model | Configuration |
+|-------|---------------|
+| GPT-5.4 | `openai/gpt-5.4` |
+| Claude Sonnet 4.6 | `openai/claude-sonnet-4.6` |
+| Gemini 3 Pro | `openai/gemini-3-pro-preview` |
+| GLM-4.7 | `openai/glm-4.7` |
+| DeepSeek V3 | `openai/deepseek-chat` |
+
+## Get API Key
+
+### Global
+
+1. Go to [astraflow.ucloud-global.com](https://astraflow.ucloud-global.com)
+2. Sign up and navigate to API Keys
+3. Create a new API key
+
+### China
+
+1. Go to [astraflow.ucloud.cn](https://astraflow.ucloud.cn)
+2. Sign up and navigate to API Keys
+3. Create a new API key
+
+## Benefits
+
+- **200+ models** — Access models from OpenAI, Anthropic, Google, Meta, DeepSeek, and more
+- **OpenAI-compatible** — Drop-in replacement for OpenAI API
+- **Global & China endpoints** — Choose the endpoint closest to your location
+- **Cost-effective** — Competitive pricing across all models
\ No newline at end of file
diff --git a/docs/llm-providers/overview.mdx b/docs/llm-providers/overview.mdx
index 8c0d5002e..bbcb2cd37 100644
--- a/docs/llm-providers/overview.mdx
+++ b/docs/llm-providers/overview.mdx
@@ -43,6 +43,9 @@ See the [Local Models guide](/llm-providers/local) for setup instructions and re
Access 100+ models through a single API.
+
+ 200+ models via UCloud (global & China).
+
Gemini 3 models via Google Cloud.