mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-30 10:56:29 +02:00
Merge pull request #298 from rowboatlabs/arkml-patch-2
Document model support and configuration in README
This commit is contained in:
commit
add897e448
1 changed files with 32 additions and 1 deletions
33
README.md
33
README.md
|
|
@ -85,7 +85,38 @@ rowboatx --agent=<agent-name> --input="xyz" --no-interactive=true
|
||||||
```bash
|
```bash
|
||||||
rowboatx --agent=<agent-name> --run_id=<run_id> # resume from a previous run
|
rowboatx --agent=<agent-name> --run_id=<run_id> # resume from a previous run
|
||||||
```
|
```
|
||||||
|
## Models support
|
||||||
|
You can configure your models in `~/.rowboat/config/models.json`
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"providers": {
|
||||||
|
"openai": {
|
||||||
|
"flavor": "openai"
|
||||||
|
},
|
||||||
|
"openai-compatible-host": {
|
||||||
|
"flavor": "openai",
|
||||||
|
"baseURL": "http://localhost:2000/...",
|
||||||
|
"apiKey": "...",
|
||||||
|
"headers": {
|
||||||
|
"foo": "bar"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"anthropic": {
|
||||||
|
"flavor": "anthropic"
|
||||||
|
},
|
||||||
|
"google": {
|
||||||
|
"flavor": "google"
|
||||||
|
},
|
||||||
|
"ollama": {
|
||||||
|
"flavor": "ollama"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaults": {
|
||||||
|
"provider": "openai",
|
||||||
|
"model": "gpt-5"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
## Rowboat Classic UI
|
## Rowboat Classic UI
|
||||||
|
|
||||||
To use Rowboat Classic UI (not RowboatX), refer to [Classic](https://docs.rowboatlabs.com/).
|
To use Rowboat Classic UI (not RowboatX), refer to [Classic](https://docs.rowboatlabs.com/).
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue