mirror of
https://github.com/ollama/ollama.git
synced 2026-05-13 06:21:28 +00:00
launch/docs: fix title for pool (#15883)
This commit is contained in:
parent
ab2e005bf7
commit
bad32c7244
6 changed files with 16 additions and 11 deletions
|
|
@ -57,6 +57,7 @@ func TestIntegrationLookup(t *testing.T) {
|
||||||
{"kimi", "kimi", true, "Kimi Code CLI"},
|
{"kimi", "kimi", true, "Kimi Code CLI"},
|
||||||
{"droid", "droid", true, "Droid"},
|
{"droid", "droid", true, "Droid"},
|
||||||
{"opencode", "opencode", true, "OpenCode"},
|
{"opencode", "opencode", true, "OpenCode"},
|
||||||
|
{"pool", "pool", true, "Pool"},
|
||||||
{"unknown integration", "unknown", false, ""},
|
{"unknown integration", "unknown", false, ""},
|
||||||
{"empty string", "", false, ""},
|
{"empty string", "", false, ""},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -217,7 +217,7 @@ Supported integrations:
|
||||||
opencode OpenCode
|
opencode OpenCode
|
||||||
openclaw OpenClaw (aliases: clawdbot, moltbot)
|
openclaw OpenClaw (aliases: clawdbot, moltbot)
|
||||||
pi Pi
|
pi Pi
|
||||||
pool Poolside
|
pool Pool
|
||||||
vscode VS Code (aliases: code)
|
vscode VS Code (aliases: code)
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ type Poolside struct{}
|
||||||
|
|
||||||
var poolsideGOOS = runtime.GOOS
|
var poolsideGOOS = runtime.GOOS
|
||||||
|
|
||||||
func (p *Poolside) String() string { return "Poolside" }
|
func (p *Poolside) String() string { return "Pool" }
|
||||||
|
|
||||||
func poolsideUnsupportedError() error {
|
func poolsideUnsupportedError() error {
|
||||||
return fmt.Errorf("Warning: Poolside is not currently supported on Windows")
|
return fmt.Errorf("Warning: Poolside is not currently supported on Windows")
|
||||||
|
|
|
||||||
|
|
@ -75,6 +75,10 @@
|
||||||
{
|
{
|
||||||
"source": "/integrations/clawdbot",
|
"source": "/integrations/clawdbot",
|
||||||
"destination": "/integrations/openclaw"
|
"destination": "/integrations/openclaw"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"source": "/integrations/poolside",
|
||||||
|
"destination": "/integrations/pool"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"navigation": {
|
"navigation": {
|
||||||
|
|
@ -125,7 +129,7 @@
|
||||||
"/integrations/droid",
|
"/integrations/droid",
|
||||||
"/integrations/goose",
|
"/integrations/goose",
|
||||||
"/integrations/pi",
|
"/integrations/pi",
|
||||||
"/integrations/poolside"
|
"/integrations/pool"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ Coding assistants that can read, modify, and execute code in your projects.
|
||||||
- [Droid](/integrations/droid)
|
- [Droid](/integrations/droid)
|
||||||
- [Goose](/integrations/goose)
|
- [Goose](/integrations/goose)
|
||||||
- [Pi](/integrations/pi)
|
- [Pi](/integrations/pi)
|
||||||
- [Poolside](/integrations/poolside)
|
- [Pool](/integrations/pool)
|
||||||
|
|
||||||
## Assistants
|
## Assistants
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
title: Poolside
|
title: Pool
|
||||||
---
|
---
|
||||||
|
|
||||||
Poolside is Poolside's software agent for the terminal, built for enterprise development workflows.
|
Pool is Poolside's software agent for the terminal, built for enterprise development workflows.
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
Install [Poolside](https://github.com/poolsideai/pool):
|
Install [Pool](https://github.com/poolsideai/pool):
|
||||||
|
|
||||||
## Usage with Ollama
|
## Usage with Ollama
|
||||||
|
|
||||||
|
|
@ -22,9 +22,9 @@ ollama launch pool
|
||||||
ollama launch pool --model kimi-k2.6:cloud
|
ollama launch pool --model kimi-k2.6:cloud
|
||||||
```
|
```
|
||||||
|
|
||||||
### Pass arguments through to Poolside
|
### Pass arguments through to Pool
|
||||||
|
|
||||||
Arguments after `--` are passed directly to Poolside:
|
Arguments after `--` are passed directly to Pool:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
ollama launch pool -- --help
|
ollama launch pool -- --help
|
||||||
|
|
@ -32,7 +32,7 @@ ollama launch pool -- --help
|
||||||
|
|
||||||
## Manual setup
|
## Manual setup
|
||||||
|
|
||||||
Poolside connects to Ollama using the OpenAI-compatible API via environment variables.
|
Pool connects to Ollama using the OpenAI-compatible API via environment variables.
|
||||||
|
|
||||||
1. Set the environment variables:
|
1. Set the environment variables:
|
||||||
|
|
||||||
|
|
@ -41,7 +41,7 @@ export POOLSIDE_STANDALONE_BASE_URL=http://localhost:11434/v1
|
||||||
export POOLSIDE_API_KEY=ollama
|
export POOLSIDE_API_KEY=ollama
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Run Poolside with an Ollama model:
|
2. Run Pool with an Ollama model:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
pool -m kimi-k2.6:cloud
|
pool -m kimi-k2.6:cloud
|
||||||
Loading…
Add table
Add a link
Reference in a new issue