workgraph 0.3.3__tar.gz → 0.3.4__tar.gz
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.
- {workgraph-0.3.3 → workgraph-0.3.4}/PKG-INFO +1 -1
- {workgraph-0.3.3 → workgraph-0.3.4}/pyproject.toml +1 -1
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/codex.py +3 -1
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/workflows/wg.toml +5 -5
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/workflows/wg_codex.toml +3 -3
- {workgraph-0.3.3 → workgraph-0.3.4}/LICENSE +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/README.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/__init__.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/claude.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/cli.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_code-review.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_design.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_implement.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_overengineering-review.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_plan.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_pr.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_summarize-review.md +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/graph.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/harness.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/run.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/show.py +0 -0
- {workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/workflow.py +0 -0
|
@@ -20,9 +20,11 @@ from workgraph.harness import (
|
|
|
20
20
|
|
|
21
21
|
# USD per million tokens: uncached input, cached input, cache write, output.
|
|
22
22
|
# A Pro model offers no cached input discount, so its cached rate is its input rate.
|
|
23
|
-
# Source: https://developers.openai.com/api/docs/pricing, read 2026-09-
|
|
23
|
+
# Source: https://developers.openai.com/api/docs/pricing, read 2026-09-23.
|
|
24
24
|
MODEL_RATES: dict[str, tuple[float, float, float, float]] = {
|
|
25
25
|
"gpt-6-astra": (10.00, 1.00, 12.50, 50.00),
|
|
26
|
+
"gpt-6-sol": (2.00, 0.20, 2.50, 10.00),
|
|
27
|
+
"gpt-6-luna": (0.10, 0.01, 0.125, 0.50),
|
|
26
28
|
"gpt-5.6-sol": (4.00, 0.40, 5.00, 20.00),
|
|
27
29
|
"gpt-5.6": (4.00, 0.40, 5.00, 20.00), # the documented alias of gpt-5.6-sol
|
|
28
30
|
"gpt-daybreak-blue-latest": (4.00, 0.40, 5.00, 20.00), # the Daybreak alias of gpt-5.6-sol
|
|
@@ -37,7 +37,7 @@ reject = "plan"
|
|
|
37
37
|
|
|
38
38
|
[nodes.implement]
|
|
39
39
|
agent = "wg_implement"
|
|
40
|
-
model = "claude-opus-5"
|
|
40
|
+
model = "claude-opus-5-5"
|
|
41
41
|
outcomes = ["done"]
|
|
42
42
|
|
|
43
43
|
[nodes.implement.transitions]
|
|
@@ -84,8 +84,8 @@ outcomes = ["pass", "fail"]
|
|
|
84
84
|
|
|
85
85
|
[nodes.summary]
|
|
86
86
|
agent = "wg_summarize-review"
|
|
87
|
-
model = "
|
|
88
|
-
effort = "
|
|
87
|
+
model = "claude-opus-5-5"
|
|
88
|
+
effort = "low"
|
|
89
89
|
outcomes = ["done"]
|
|
90
90
|
|
|
91
91
|
[nodes.summary.transitions]
|
|
@@ -93,8 +93,8 @@ done = "pr"
|
|
|
93
93
|
|
|
94
94
|
[nodes.pr]
|
|
95
95
|
agent = "wg_pr"
|
|
96
|
-
model = "
|
|
97
|
-
effort = "
|
|
96
|
+
model = "claude-opus-5-5"
|
|
97
|
+
effort = "low"
|
|
98
98
|
outcomes = ["done"]
|
|
99
99
|
|
|
100
100
|
[nodes.pr.transitions]
|
|
@@ -38,7 +38,7 @@ reject = "plan"
|
|
|
38
38
|
[nodes.implement]
|
|
39
39
|
agent = "wg_implement"
|
|
40
40
|
harness = "codex"
|
|
41
|
-
model = "gpt-
|
|
41
|
+
model = "gpt-6-sol"
|
|
42
42
|
effort = "xhigh"
|
|
43
43
|
sandbox = "danger-full-access"
|
|
44
44
|
outcomes = ["done"]
|
|
@@ -88,7 +88,7 @@ outcomes = ["pass", "fail"]
|
|
|
88
88
|
[nodes.summary]
|
|
89
89
|
agent = "wg_summarize-review"
|
|
90
90
|
harness = "codex"
|
|
91
|
-
model = "gpt-
|
|
91
|
+
model = "gpt-6-sol"
|
|
92
92
|
outcomes = ["done"]
|
|
93
93
|
|
|
94
94
|
[nodes.summary.transitions]
|
|
@@ -97,7 +97,7 @@ done = "pr"
|
|
|
97
97
|
[nodes.pr]
|
|
98
98
|
agent = "wg_pr"
|
|
99
99
|
harness = "codex"
|
|
100
|
-
model = "gpt-
|
|
100
|
+
model = "gpt-6-luna"
|
|
101
101
|
effort = "max"
|
|
102
102
|
sandbox = "danger-full-access"
|
|
103
103
|
outcomes = ["done"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workgraph-0.3.3 → workgraph-0.3.4}/src/workgraph/definitions/agents/wg_overengineering-review.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|