mirror of
https://github.com/ollama/ollama.git
synced 2026-04-17 15:53:27 +02:00
docs: make integrations more discoverable (#14301)
* docs: add Pi integration page * docs: flatten integration sidebar with expanded subheadings * docs: add OpenClaw and Claude Code to quickstart
This commit is contained in:
@@ -106,20 +106,23 @@
|
|||||||
"group": "Integrations",
|
"group": "Integrations",
|
||||||
"pages": [
|
"pages": [
|
||||||
"/integrations/index",
|
"/integrations/index",
|
||||||
|
{
|
||||||
|
"group": "Assistants",
|
||||||
|
"expanded": true,
|
||||||
|
"pages": [
|
||||||
|
"/integrations/openclaw"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"group": "Coding",
|
"group": "Coding",
|
||||||
|
"expanded": true,
|
||||||
"pages": [
|
"pages": [
|
||||||
"/integrations/claude-code",
|
"/integrations/claude-code",
|
||||||
"/integrations/codex",
|
"/integrations/codex",
|
||||||
"/integrations/opencode",
|
"/integrations/opencode",
|
||||||
"/integrations/droid",
|
"/integrations/droid",
|
||||||
"/integrations/goose"
|
"/integrations/goose",
|
||||||
]
|
"/integrations/pi"
|
||||||
},
|
|
||||||
{
|
|
||||||
"group": "Assistants",
|
|
||||||
"pages": [
|
|
||||||
"/integrations/openclaw"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ Coding assistants that can read, modify, and execute code in your projects.
|
|||||||
- [OpenCode](/integrations/opencode)
|
- [OpenCode](/integrations/opencode)
|
||||||
- [Droid](/integrations/droid)
|
- [Droid](/integrations/droid)
|
||||||
- [Goose](/integrations/goose)
|
- [Goose](/integrations/goose)
|
||||||
|
- [Pi](/integrations/pi)
|
||||||
|
|
||||||
## Assistants
|
## Assistants
|
||||||
|
|
||||||
|
|||||||
57
docs/integrations/pi.mdx
Normal file
57
docs/integrations/pi.mdx
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
---
|
||||||
|
title: Pi
|
||||||
|
---
|
||||||
|
|
||||||
|
Pi is a minimal AI agent toolkit with plugin support.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Install [Pi](https://github.com/badlogic/pi-mono):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install -g @mariozechner/pi-coding-agent
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage with Ollama
|
||||||
|
|
||||||
|
### Quick setup
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ollama launch pi
|
||||||
|
```
|
||||||
|
|
||||||
|
To configure without launching:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ollama launch pi --config
|
||||||
|
```
|
||||||
|
|
||||||
|
### Manual setup
|
||||||
|
|
||||||
|
Add a configuration block to `~/.pi/agent/models.json`:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"providers": {
|
||||||
|
"ollama": {
|
||||||
|
"baseUrl": "http://localhost:11434/v1",
|
||||||
|
"api": "openai-completions",
|
||||||
|
"apiKey": "ollama",
|
||||||
|
"models": [
|
||||||
|
{
|
||||||
|
"id": "qwen3-coder"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Update `~/.pi/agent/settings.json` to set the default provider:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"defaultProvider": "ollama",
|
||||||
|
"defaultModel": "qwen3-coder"
|
||||||
|
}
|
||||||
|
```
|
||||||
@@ -27,9 +27,17 @@ The menu provides quick access to:
|
|||||||
- **Launch tools** - Claude Code, Codex, OpenClaw, and more
|
- **Launch tools** - Claude Code, Codex, OpenClaw, and more
|
||||||
- **Additional integrations** - Available under "More..."
|
- **Additional integrations** - Available under "More..."
|
||||||
|
|
||||||
|
## Assistants
|
||||||
|
|
||||||
|
Launch [OpenClaw](/integrations/openclaw), a personal AI with 100+ skills:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
ollama launch openclaw
|
||||||
|
```
|
||||||
|
|
||||||
## Coding
|
## Coding
|
||||||
|
|
||||||
Launch coding tools with Ollama models:
|
Launch [Claude Code](/integrations/claude-code) and other coding tools with Ollama models:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
ollama launch claude
|
ollama launch claude
|
||||||
|
|||||||
Reference in New Issue
Block a user