diff --git a/components/repo-issues.tsx b/components/repo-issues.tsx index d4d5ba20..6f763f68 100644 --- a/components/repo-issues.tsx +++ b/components/repo-issues.tsx @@ -60,6 +60,7 @@ const AGENT_MODELS = { ], cursor: [ { value: 'auto', label: 'Auto' }, + { value: 'composer-1', label: 'Composer' }, { value: 'sonnet-4.5', label: 'Sonnet 4.5' }, { value: 'sonnet-4.5-thinking', label: 'Sonnet 4.5 Thinking' }, { value: 'gpt-5', label: 'GPT-5' }, diff --git a/components/repo-pull-requests.tsx b/components/repo-pull-requests.tsx index 6b94cf26..117d235e 100644 --- a/components/repo-pull-requests.tsx +++ b/components/repo-pull-requests.tsx @@ -68,6 +68,7 @@ const AGENT_MODELS = { ], cursor: [ { value: 'auto', label: 'Auto' }, + { value: 'composer-1', label: 'Composer' }, { value: 'sonnet-4.5', label: 'Sonnet 4.5' }, { value: 'sonnet-4.5-thinking', label: 'Sonnet 4.5 Thinking' }, { value: 'gpt-5', label: 'GPT-5' }, diff --git a/components/task-details.tsx b/components/task-details.tsx index 51026b28..927d98d3 100644 --- a/components/task-details.tsx +++ b/components/task-details.tsx @@ -131,6 +131,7 @@ const AGENT_MODELS = { ], cursor: [ { value: 'auto', label: 'Auto' }, + { value: 'composer-1', label: 'Composer' }, { value: 'sonnet-4.5', label: 'Sonnet 4.5' }, { value: 'sonnet-4.5-thinking', label: 'Sonnet 4.5 Thinking' }, { value: 'gpt-5', label: 'GPT-5' }, diff --git a/components/task-form.tsx b/components/task-form.tsx index 1b8998be..afb8b4a8 100644 --- a/components/task-form.tsx +++ b/components/task-form.tsx @@ -91,6 +91,7 @@ const AGENT_MODELS = { ], cursor: [ { value: 'auto', label: 'Auto' }, + { value: 'composer-1', label: 'Composer' }, { value: 'sonnet-4.5', label: 'Sonnet 4.5' }, { value: 'sonnet-4.5-thinking', label: 'Sonnet 4.5 Thinking' }, { value: 'gpt-5', label: 'GPT-5' }, diff --git a/components/tasks-list-client.tsx b/components/tasks-list-client.tsx index a840b45b..42837a67 100644 --- a/components/tasks-list-client.tsx +++ b/components/tasks-list-client.tsx @@ -60,6 +60,7 @@ const AGENT_MODELS = { ], cursor: [ { value: 'auto', label: 'Auto' }, + { value: 'composer-1', label: 'Composer' }, { value: 'sonnet-4.5', label: 'Sonnet 4.5' }, { value: 'sonnet-4.5-thinking', label: 'Sonnet 4.5 Thinking' }, { value: 'gpt-5', label: 'GPT-5' },