kailash 4.26.0-x86_64-linux → 4.28.0-x86_64-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 +4 -4
- data/README.md +30 -4
- data/lib/kailash/3.2/kailash.so +0 -0
- data/lib/kailash/3.3/kailash.so +0 -0
- data/lib/kailash/3.4/kailash.so +0 -0
- data/lib/kailash/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18ae4e2c58425df9b8efd5e58c75d7242a1229734a2e3ed94bfd0f7c9eeab91b
|
|
4
|
+
data.tar.gz: ffb83e1c78a25712754f656b921ce68e44e529c66f88bfb0ca2a4cc9eb4a62ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f76e4d186d8aa01ed67a5ad0de031b7578e2827acdfd755ab966c285142ccc0b5d6089dc0a399ab0063f10070693610a90dbac5ebdf6ff06aaf34321f063f217
|
|
7
|
+
data.tar.gz: 10ee05a8f4aece2598ba62e8c15d9d446188d4dc8a32e022dacdde3a7ffaf977371bf81e944052b1fb0034bf4c2e45ccc43fd713f3b77a91a38ea9db1a937abc
|
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
|
-
|
|
142
|
-
puts
|
|
143
|
-
puts
|
|
144
|
-
|
|
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 |
|
data/lib/kailash/3.2/kailash.so
CHANGED
|
Binary file
|
data/lib/kailash/3.3/kailash.so
CHANGED
|
Binary file
|
data/lib/kailash/3.4/kailash.so
CHANGED
|
Binary file
|
data/lib/kailash/version.rb
CHANGED
|
@@ -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.
|
|
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.
|
|
4
|
+
version: 4.28.0
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Kailash Authors
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake-compiler
|