cmd: add qwen3.5 context length for launch (#14626)
Start building with open models.
curl -fsSL https://ollama.com/install.sh | sh
or download manually
irm https://ollama.com/install.ps1 | iex
Manual install instructions
The official Ollama Docker image ollama/ollama is available on Docker Hub.
ollama/ollama
ollama
You’ll be prompted to run a model or connect Ollama to your existing agents or applications such as claude, codex, openclaw and more.
claude
codex
openclaw
To launch a specific integration:
ollama launch claude
Supported integrations include Claude Code, Codex, Droid, and OpenCode.
Use OpenClaw to turn Ollama into a personal AI assistant across WhatsApp, Telegram, Slack, Discord, and more:
ollama launch openclaw
Run and chat with Gemma 3:
ollama run gemma3
See ollama.com/library for the full list.
See the quickstart guide for more details.
Ollama has a REST API for running and managing models.
curl http://localhost:11434/api/chat -d '{ "model": "gemma3", "messages": [{ "role": "user", "content": "Why is the sky blue?" }], "stream": false }'
See the API documentation for all endpoints.
pip install ollama
from ollama import chat response = chat(model='gemma3', messages=[ { 'role': 'user', 'content': 'Why is the sky blue?', }, ]) print(response.message.content)
npm i ollama
import ollama from "ollama"; const response = await ollama.chat({ model: "gemma3", messages: [{ role: "user", content: "Why is the sky blue?" }], }); console.log(response.message.content);
Want to add your project? Open a pull request.
SwiftChat, Enchanted, Maid, Ollama App, Reins, and ConfiChat listed above also support mobile platforms.
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
Ollama
Start building with open models.
Download
macOS
or download manually
Windows
or download manually
Linux
Manual install instructions
Docker
The official Ollama Docker image
ollama/ollamais available on Docker Hub.Libraries
Community
Get started
You’ll be prompted to run a model or connect Ollama to your existing agents or applications such as
claude,codex,openclawand more.Coding
To launch a specific integration:
Supported integrations include Claude Code, Codex, Droid, and OpenCode.
AI assistant
Use OpenClaw to turn Ollama into a personal AI assistant across WhatsApp, Telegram, Slack, Discord, and more:
Chat with a model
Run and chat with Gemma 3:
See ollama.com/library for the full list.
See the quickstart guide for more details.
REST API
Ollama has a REST API for running and managing models.
See the API documentation for all endpoints.
Python
JavaScript
Supported backends
Documentation
Community Integrations
Chat Interfaces
Web
Desktop
Mobile
Code Editors & Development
Libraries & SDKs
Frameworks & Agents
RAG & Knowledge Bases
Bots & Messaging
Terminal & CLI
Productivity & Apps
Observability & Monitoring
Database & Embeddings
Infrastructure & Deployment
Cloud
Package Managers