"vscode:/vscode.git/clone" did not exist on "41db1c2f033b82485a3ef7bd0a986d1a1b579519"
cloud.md 1.22 KB
Newer Older
1
# Cloud
2

3
| Ollama's cloud is currently in preview. For full documentation, see [Ollama's documentation](https://docs.ollama.com/cloud).
4

5
## Cloud Models
6

7
[Cloud models](https://ollama.com/cloud) are a new kind of model in Ollama that can run without a powerful GPU. Instead, cloud models are automatically offloaded to Ollama's cloud while offering the same capabilities as local models, making it possible to keep using your local tools while running larger models that wouldn’t fit on a personal computer.
8

9
Ollama currently supports the following cloud models, with more coming soon:
10

11
12
13
14
- `gpt-oss:20b-cloud`
- `gpt-oss:120b-cloud`
- `deepseek-v3.1:671b-cloud`
- `qwen3-coder:480b-cloud`
15

16
### Get started
17

18
To run a cloud model, open the terminal and run:
19

20
21
```
ollama run gpt-oss:120b-cloud
22
23
```

24
To run cloud models with integrations that work with Ollama, first download the cloud model:
25

26
27
```
ollama pull qwen3-coder:480b-cloud
28
29
```

30
Then sign in to Ollama:
31

32
33
34
```
ollama signin
```
35

36
Finally, access the model using the model name `qwen3-coder:480b-cloud` via Ollama's local API or tooling.
37

38
## Cloud API access
39

40
Cloud models can also be accessed directly on ollama.com's API. For more information, see the [docs](https://docs.ollama.com/cloud).