Document model support and configuration in README

Added section for model configuration and supported providers.
This commit is contained in:
arkml 2025-11-19 01:19:30 +05:30 committed by GitHub
parent 51e29af12e
commit 06c8e7b766
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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/).