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 1/2] 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/). From 8b1c43f3f36935c5a5949e179de3a6ead4ad332c Mon Sep 17 00:00:00 2001 From: Ramnique Singh <30795890+ramnique@users.noreply.github.com> Date: Wed, 19 Nov 2025 01:21:54 +0530 Subject: [PATCH 2/2] add a custom openai provider example --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 24f2b2ef..afaf171b 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,14 @@ You can configure your models in `~/.rowboat/config/models.json` "openai": { "flavor": "openai" }, + "openai-compatible-host": { + "flavor": "openai", + "baseURL": "http://localhost:2000/...", + "apiKey": "...", + "headers": { + "foo": "bar" + } + }, "anthropic": { "flavor": "anthropic" },