mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
Document model support and configuration in README
Added section for model configuration and supported providers.
This commit is contained in:
parent
51e29af12e
commit
06c8e7b766
1 changed files with 24 additions and 1 deletions
25
README.md
25
README.md
|
|
@ -85,7 +85,30 @@ rowboatx --agent=<agent-name> --input="xyz" --no-interactive=true
|
|||
```bash
|
||||
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"
|
||||
},
|
||||
"anthropic": {
|
||||
"flavor": "anthropic"
|
||||
},
|
||||
"google": {
|
||||
"flavor": "google"
|
||||
},
|
||||
"ollama": {
|
||||
"flavor": "ollama"
|
||||
}
|
||||
},
|
||||
"defaults": {
|
||||
"provider": "openai",
|
||||
"model": "gpt-5"
|
||||
}
|
||||
}
|
||||
```
|
||||
## Rowboat Classic UI
|
||||
|
||||
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