ai-push-hooks 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@ skip_on_sync_branch = true
6
6
 
7
7
  [llm]
8
8
  runner = "opencode"
9
- model = "openai/gpt-5.3-codex-spark"
9
+ model = "openai/gpt-5.3-codex"
10
10
  variant = ""
11
11
  timeout_seconds = 800
12
12
  max_parallel = 2
package/README.md CHANGED
@@ -92,7 +92,7 @@ Requirements:
92
92
  | Key | Type | Default | Description |
93
93
  | --- | --- | --- | --- |
94
94
  | `runner` | string | `"opencode"` | LLM runner label (currently OpenCode flow). |
95
- | `model` | string | `"openai/gpt-5.3-codex-spark"` | Model passed to OpenCode. |
95
+ | `model` | string | `"openai/gpt-5.3-codex"` | Model passed to OpenCode. |
96
96
  | `variant` | string | `""` | Optional OpenCode variant. |
97
97
  | `timeout_seconds` | int | `800` | Timeout per LLM invocation and related OpenCode calls. |
98
98
  | `max_parallel` | int | `2` | Max concurrent read-only steps (`collect`, `llm`). |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-push-hooks",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Modular AI push-hook workflow runner",
5
5
  "license": "MIT",
6
6
  "repository": {
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ai-push-hooks"
7
- version = "0.1.11"
7
+ version = "0.1.12"
8
8
  description = "Modular AI push-hook workflow runner"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -25,7 +25,7 @@ DEFAULT_CONFIG_RAW: dict[str, Any] = {
25
25
  },
26
26
  "llm": {
27
27
  "runner": "opencode",
28
- "model": "openai/gpt-5.3-codex-spark",
28
+ "model": "openai/gpt-5.3-codex",
29
29
  "variant": "",
30
30
  "timeout_seconds": 800,
31
31
  "max_parallel": 2,
@@ -67,7 +67,7 @@ skip_on_sync_branch = true
67
67
 
68
68
  [llm]
69
69
  runner = "opencode"
70
- model = "openai/gpt-5.3-codex-spark"
70
+ model = "openai/gpt-5.3-codex"
71
71
  variant = ""
72
72
  timeout_seconds = 800
73
73
  max_parallel = 2
@@ -28,7 +28,7 @@ class GeneralConfig:
28
28
  @dataclass(frozen=True)
29
29
  class LlmConfig:
30
30
  runner: str = "opencode"
31
- model: str = "openai/gpt-5.3-codex-spark"
31
+ model: str = "openai/gpt-5.3-codex"
32
32
  variant: str = ""
33
33
  timeout_seconds: int = 800
34
34
  max_parallel: int = 2