mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-22 11:25:13 +00:00
Use gpt-5.1-codex-mini as default model in Ralph loop recipes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -45,7 +45,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
|
||||
|
||||
Reference in New Issue
Block a user