Skip to content

Commit 85ae45f

Browse files
authored
Merge pull request #886 from pipecat-ai/docs/pr-4688
docs: update for pipecat PR #4688
2 parents 93d6bbe + 012e2bc commit 85ae45f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

api-reference/server/services/llm/nebius.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Before using Nebius LLM services, you need:
5050

5151
1. **Nebius Account**: Sign up at [Nebius](https://nebius.com/)
5252
2. **API Key**: Generate an API key from the Token Factory dashboard
53-
3. **Model Selection**: Choose from available models (default: `openai/gpt-oss-120b`)
53+
3. **Model Selection**: Choose from available models (default: `Qwen/Qwen3-30B-A3B-Instruct-2507`)
5454

5555
### Required Environment Variables
5656

@@ -80,7 +80,7 @@ Runtime-configurable settings passed via the `settings` constructor argument usi
8080

8181
| Parameter | Type | Default | Description |
8282
| ------------------- | ------- | ----------------------- | -------------------------------------------------------------------------------------- |
83-
| `model` | `str` | `"openai/gpt-oss-120b"` | Nebius model identifier. Check Nebius Token Factory for available models. |
83+
| `model` | `str` | `"Qwen/Qwen3-30B-A3B-Instruct-2507"` | Nebius model identifier. Check Nebius Token Factory for available models. |
8484
| `temperature` | `float` | `NOT_GIVEN` | Sampling temperature (0.0 to 2.0). Lower values are more focused, higher are creative. |
8585
| `max_tokens` | `int` | `NOT_GIVEN` | Maximum tokens to generate. |
8686
| `top_p` | `float` | `NOT_GIVEN` | Top-p (nucleus) sampling (0.0 to 1.0). Controls diversity of output. |
@@ -115,7 +115,7 @@ from pipecat.services.nebius import NebiusLLMService
115115
llm = NebiusLLMService(
116116
api_key=os.getenv("NEBIUS_API_KEY"),
117117
settings=NebiusLLMService.Settings(
118-
model="openai/gpt-oss-120b",
118+
model="Qwen/Qwen3-30B-A3B-Instruct-2507",
119119
temperature=0.7,
120120
max_tokens=1000,
121121
),

0 commit comments

Comments
 (0)