@xn-intenton-z2a/agentic-lib 7.4.47 → 7.4.48
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.
|
@@ -28,7 +28,7 @@ on:
|
|
|
28
28
|
profile:
|
|
29
29
|
type: string
|
|
30
30
|
required: false
|
|
31
|
-
default: "
|
|
31
|
+
default: ""
|
|
32
32
|
workflow-runs:
|
|
33
33
|
type: string
|
|
34
34
|
required: false
|
|
@@ -116,11 +116,12 @@ on:
|
|
|
116
116
|
- claude-sonnet-4
|
|
117
117
|
- gpt-4.1
|
|
118
118
|
profile:
|
|
119
|
-
description: "Tuning profile"
|
|
119
|
+
description: "Tuning profile (empty = read from agentic-lib.toml)"
|
|
120
120
|
type: choice
|
|
121
121
|
required: false
|
|
122
|
-
default: "
|
|
122
|
+
default: ""
|
|
123
123
|
options:
|
|
124
|
+
- ""
|
|
124
125
|
- min
|
|
125
126
|
- med
|
|
126
127
|
- max
|
|
@@ -240,7 +241,7 @@ jobs:
|
|
|
240
241
|
resolve('mission-seed', process.env.INPUT_MISSION_SEED, null, '7-kyu-understand-fizz-buzz');
|
|
241
242
|
resolve('mission-text', process.env.INPUT_MISSION_TEXT, null, '');
|
|
242
243
|
resolve('model', process.env.INPUT_MODEL, 'model', 'gpt-5-mini');
|
|
243
|
-
resolve('profile', process.env.INPUT_PROFILE, 'profile', '
|
|
244
|
+
resolve('profile', process.env.INPUT_PROFILE, 'profile', '');
|
|
244
245
|
resolve('workflow-runs', process.env.INPUT_WORKFLOW_RUNS, null, '4');
|
|
245
246
|
resolve('schedule', process.env.INPUT_SCHEDULE, null, 'off');
|
|
246
247
|
resolve('dry-run', process.env.INPUT_DRY_RUN, null, 'false');
|
package/package.json
CHANGED