Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
57 changes: 57 additions & 0 deletions docs/llm-providers/astraflow.mdx
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions docs/llm-providers/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ See the [Local Models guide](/llm-providers/local) for setup instructions and re
<Card title="OpenRouter" href="/llm-providers/openrouter">
Access 100+ models through a single API.
</Card>
<Card title="Astraflow" href="/llm-providers/astraflow">
200+ models via UCloud (global & China).
</Card>
<Card title="Google Vertex AI" href="/llm-providers/vertex">
Gemini 3 models via Google Cloud.
</Card>
Expand Down