Use gpt-5.1-codex-mini as default model in Ralph loop recipes

This commit is contained in:
Anthony Shaw
2026-02-11 13:31:05 -08:00
parent 0e616701a5
commit 3eb7efc990
9 changed files with 641 additions and 12 deletions

View File

@@ -58,7 +58,7 @@ try
// Fresh session each iteration — context isolation is the point
var session = await client.CreateSessionAsync(
new SessionConfig { Model = "claude-sonnet-4.5" });
new SessionConfig { Model = "gpt-5.1-codex-mini" });
try
{
var done = new TaskCompletionSource<string>();
@@ -121,7 +121,7 @@ try
var session = await client.CreateSessionAsync(
new SessionConfig
{
Model = "claude-sonnet-4.5",
Model = "gpt-5.1-codex-mini",
// Pin the agent to the project directory
WorkingDirectory = Environment.CurrentDirectory,
// Auto-approve tool calls for unattended operation