language-operator 0.1.49 → 0.1.50
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/language_operator/cli/commands/system.rb +2 -1
- data/lib/language_operator/templates/schema/agent_dsl_openapi.yaml +1 -1
- data/lib/language_operator/templates/schema/agent_dsl_schema.json +1 -1
- data/lib/language_operator/version.rb +1 -1
- data/synth/002/output.log +12 -13
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91617890134b2f0eeb1c0504d5e2d1c445e708a5426020d18b73e64dbd0662f2
|
|
4
|
+
data.tar.gz: bba869b039624f1592fc5a9e9e78bed3ddb3dd8f81c4eeb67038f6840cbf58d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f441cb3356cb9966ab42bf9233fe3588161924c0bfb750ccd9b69c77cac7cf75cadb7df060b2d6f6e1a3cdae2f4925c3adcb994a32b1fd5d90af59a617cc6d7a
|
|
7
|
+
data.tar.gz: bfd8799787987514ba5dd83322e13b77b68f194a961df905d748c491b2681cfcdd52a2d3da92fded53e2583534bf25740f22609b2e041c0ac8c7fdf4a446ce4f
|
data/Gemfile.lock
CHANGED
|
@@ -1101,7 +1101,8 @@ module LanguageOperator
|
|
|
1101
1101
|
'namespace' => ctx.namespace,
|
|
1102
1102
|
'labels' => {
|
|
1103
1103
|
'app.kubernetes.io/name' => name,
|
|
1104
|
-
'app.kubernetes.io/component' => 'test-agent'
|
|
1104
|
+
'app.kubernetes.io/component' => 'test-agent',
|
|
1105
|
+
'langop.io/kind' => 'LanguageAgent'
|
|
1105
1106
|
}
|
|
1106
1107
|
},
|
|
1107
1108
|
'spec' => {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "https://github.com/language-operator/language-operator-gem/schema/agent-dsl.json",
|
|
4
4
|
"title": "Language Operator Agent DSL",
|
|
5
5
|
"description": "Schema for defining autonomous AI agents using the Language Operator DSL",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.50",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
9
9
|
"name": {
|
data/synth/002/output.log
CHANGED
|
@@ -5,18 +5,17 @@
|
|
|
5
5
|
[1;36m⚬[0m Chat session initialized (with_tools=false)
|
|
6
6
|
[1;36m⚬[0m Executing main block (agent=test-agent, task_count=1)
|
|
7
7
|
[1;36m⚬[0m Executing main block (inputs_keys=[])
|
|
8
|
-
[1;36m⚬[0m Executing task (task=tell_fortune, type=neural, timeout=
|
|
9
|
-
[1;
|
|
10
|
-
[1;
|
|
11
|
-
[1;
|
|
12
|
-
[1;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
[31m✗ Agent failed with exit code: 1[0m
|
|
8
|
+
[1;36m⚬[0m Executing task (task=tell_fortune, type=neural, timeout=240.0, max_retries=3)
|
|
9
|
+
[1;36m⚬[0m Sending prompt to LLM (task=tell_fortune, prompt_length=417)
|
|
10
|
+
[1;36m⚬[0m LLM response received, extracting content (task=tell_fortune)
|
|
11
|
+
[1;36m⚬[0m Neural task response received (task=tell_fortune, response_length=3617)
|
|
12
|
+
[1;36m⚬[0m Parsing neural task response (task=tell_fortune)
|
|
13
|
+
[1;36m⚬[0m Response parsed successfully (task=tell_fortune, output_keys=[:fortune])
|
|
14
|
+
[1;36m⚬[0m Validating task outputs (task=tell_fortune)
|
|
15
|
+
[1;36m⚬[0m Main execution (33.916s)
|
|
16
|
+
[1;36m⚬[0m Main block completed
|
|
17
|
+
[1;36m⚬[0m Main block execution completed (result={fortune: "Your kindness will bring you much happiness."})
|
|
18
|
+
Your kindness will bring you much happiness.
|
|
19
|
+
[32m✔ Agent completed successfully[0m
|
|
21
20
|
|
|
22
21
|
|