mirror of
https://github.com/cexll/myclaude.git
synced 2026-02-15 03:32:43 +08:00
Change default model to gpt-5.1-codex
- Update SKILL.md documentation - Update codex.py DEFAULT_MODEL constant Generated by swe-agent
This commit is contained in:
@@ -46,8 +46,8 @@ uv run ~/.claude/skills/codex/scripts/codex.py resume <session_id> "<task>" [mod
|
|||||||
### Parameters
|
### Parameters
|
||||||
|
|
||||||
- `task` (required): Task description, supports `@file` references
|
- `task` (required): Task description, supports `@file` references
|
||||||
- `model` (optional): Model to use (default: gpt-5-codex)
|
- `model` (optional): Model to use (default: gpt-5.1-codex)
|
||||||
- `gpt-5-codex`: Default, optimized for code
|
- `gpt-5.1-codex`: Default, optimized for code
|
||||||
- `gpt-5`: Fast general purpose
|
- `gpt-5`: Fast general purpose
|
||||||
- `working_dir` (optional): Working directory (default: current)
|
- `working_dir` (optional): Working directory (default: current)
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ import sys
|
|||||||
import os
|
import os
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
DEFAULT_MODEL = 'gpt-5-codex'
|
DEFAULT_MODEL = 'gpt-5.1-codex'
|
||||||
DEFAULT_WORKDIR = '.'
|
DEFAULT_WORKDIR = '.'
|
||||||
DEFAULT_TIMEOUT = 7200 # 2 hours in seconds
|
DEFAULT_TIMEOUT = 7200 # 2 hours in seconds
|
||||||
FORCE_KILL_DELAY = 5
|
FORCE_KILL_DELAY = 5
|
||||||
|
|||||||
Reference in New Issue
Block a user