kailash 4.26.0-aarch64-linux → 4.28.0-aarch64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e4ad495edcb9602ba869bef373878aeb2f2890b8eeea1530a9d8cc65ae80f8a
4
- data.tar.gz: 5c1ad437af8e579dff68d90bf156e9f34eda0311cb6bf0a4540bb99f3b2d4d86
3
+ metadata.gz: e98040a664d909ad0806d81caeda9a19497fa1c55010e51729c8b9f337bb4593
4
+ data.tar.gz: '01497bdac905dc47863134d7c079ec8e8719cb66311ffec15afa4ed7a0952a3e'
5
5
  SHA512:
6
- metadata.gz: 3f3ea676b7c119fbe1985a5c37c83275d5c17b6e93bfb87209a88bbfcb1a65a322ef624be961a75735e5a4f9bcbb54cb45202065078bbfb48d14a312078873ee
7
- data.tar.gz: 0a224d0da89e19e61130caf3aa127e84b5a2e80fb1f58b1abb05790fcae72d0ec2295f4d9f5622e8b3a11127edf4fdcd7c92bb04345c5a26e0dd0707c1caa134
6
+ metadata.gz: 1e6602387f0dc171477bcb96e353bb61c68f3e65cce1157a7300516edd3cbc510e2bf229887ec4c872caa574aab9ae277063eaaec1def394777c4a54c14be26f
7
+ data.tar.gz: c5db4d1fa53d14504c933bcf073ad2ca461720d3007c6ee328eee836fc69166ca786d03550b9abe28e3ddeb3770dee0cc69adfade9a3a7911790afb1e6d28a00
data/README.md CHANGED
@@ -132,16 +132,29 @@ puts result["total_tokens"]
132
132
 
133
133
  ### Multi-Agent Orchestration
134
134
 
135
+ Orchestration topology (agents, strategy, routes, dependencies) can be
136
+ configured today, but **execution is not yet available in the Ruby binding**.
137
+ `#run` / `#orchestrate` raise `Kailash::ExecutionError` because real agent
138
+ execution requires a Rust-side `BaseAgent` adapter that a Ruby callable cannot
139
+ implement (tracked by #1685). For real single-agent LLM egress today, use
140
+ `Kailash::Kaizen::Agent` (shown above).
141
+
135
142
  ```ruby
136
143
  ort = Kailash::Kaizen::OrchestrationRuntime.new("sequential")
137
144
  ort.add_agent("researcher")
138
145
  ort.add_agent("writer")
139
146
  ort.set_max_iterations(50)
140
147
 
141
- result = ort.run("Research and write about AI safety")
142
- puts result["status"] # => "completed"
143
- puts result["results"]["researcher"] # per-agent results
144
- puts result["results"]["writer"]
148
+ # Configuration is available now:
149
+ puts ort.strategy # => "sequential"
150
+ puts ort.agent_count # => 2
151
+
152
+ # Execution raises until real orchestration is wired (#1685):
153
+ begin
154
+ ort.run("Research and write about AI safety")
155
+ rescue Kailash::ExecutionError => e
156
+ warn e.message # "OrchestrationRuntime#run is not supported in the Ruby binding: ..."
157
+ end
145
158
  ort.close
146
159
  ```
147
160
 
@@ -261,6 +274,19 @@ registry.close
261
274
  | `InMemoryMessageBus` | In-memory pub/sub message bus |
262
275
  | `AgentCheckpoint` | Agent state checkpoint/resume |
263
276
 
277
+ > **Execution not yet available in the Ruby binding (#1685).** The orchestration
278
+ > and multimodal **execution** methods — `StreamingAgent#run`,
279
+ > `OrchestrationRuntime#run`, `MultiAgentOrchestrator#orchestrate`,
280
+ > `SupervisorAgent#run`, `WorkerAgent#run`, `AgentExecutor#execute_single`,
281
+ > `VisionProcessor#analyze`/`#analyze_batch`/`#analyze_file`,
282
+ > `AudioProcessor#transcribe`/`#transcribe_with_timestamps`/`#transcribe_file`, and
283
+ > `MultimodalOrchestrator#process` — raise `Kailash::ExecutionError` rather than
284
+ > returning fabricated data. Real execution is not wired in the Ruby binding yet
285
+ > (each method's error message names its specific requirement — e.g. a `BaseAgent`
286
+ > adapter or an `LlmClient`-backed processor a Ruby callable cannot provide). Their
287
+ > **configuration and getter** methods work today. For real single-agent LLM
288
+ > egress, use `Agent` (and `TaodRunner` for the TAOD loop).
289
+
264
290
  ### Enterprise (`Kailash::Enterprise::`)
265
291
 
266
292
  | Class | Description |
Binary file
Binary file
Binary file
@@ -4,5 +4,5 @@ module Kailash
4
4
  # Ruby gem version — kept in sync with Cargo.toml via release process.
5
5
  # The native extension also defines Kailash::VERSION from the Rust side;
6
6
  # this file provides a fallback before the extension is loaded.
7
- GEM_VERSION = "4.26.0"
7
+ GEM_VERSION = "4.28.0"
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kailash
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.26.0
4
+ version: 4.28.0
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Kailash Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-08 00:00:00.000000000 Z
11
+ date: 2026-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler