Merge pull request #298 from rowboatlabs/arkml-patch-2

Document model support and configuration in README
This commit is contained in:
Ramnique Singh 2025-11-19 01:40:27 +05:30 committed by GitHub
commit add897e448
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -85,7 +85,38 @@ 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"
},
"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
To use Rowboat Classic UI (not RowboatX), refer to [Classic](https://docs.rowboatlabs.com/).