@@ -50,7 +50,7 @@ Before using Nebius LLM services, you need:
5050
51511 . ** Nebius Account** : Sign up at [ Nebius] ( https://nebius.com/ )
52522 . ** 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
115115llm = 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