From 06c8e7b76646a7da13b7ab21a446326a89eeda55 Mon Sep 17 00:00:00 2001 From: arkml <6592213+arkml@users.noreply.github.com> Date: Wed, 19 Nov 2025 01:19:30 +0530 Subject: [PATCH] Document model support and configuration in README Added section for model configuration and supported providers. --- README.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2193318b..24f2b2ef 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,30 @@ rowboatx --agent= --input="xyz" --no-interactive=true ```bash rowboatx --agent= --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/).