You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Supported models: `deepseek-v3.1:671b-cloud`, `gpt-oss:20b-cloud`, `gpt-oss:120b-cloud`, `kimi-k2:1t-cloud`, `qwen3-coder:480b-cloud`, `kimi-k2-thinking` See [Ollama Models - Cloud](https://ollama.com/search?c=cloud) for more information
58
58
59
59
### Run via local Ollama
60
60
@@ -70,7 +70,7 @@ ollama signin
70
70
ollama pull gpt-oss:120b-cloud
71
71
```
72
72
73
-
3)Use as usual (offloads automatically):
73
+
3)Make a request:
74
74
75
75
```python
76
76
from ollama import Client
@@ -85,14 +85,14 @@ messages = [
85
85
]
86
86
87
87
for part in client.chat('gpt-oss:120b-cloud', messages=messages, stream=True):
0 commit comments