agent-swarm-kit 1.0.162 → 1.0.164

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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Unleash the power of collaborative AI with `agent-swarm-kit`! This library empowers you to create intelligent, modular agent networks that work together seamlessly—perfect for automating workflows, solving complex problems, or designing next-gen AI systems. With a simple API, robust validation, and flexible architecture, it’s your toolkit for building smarter solutions, faster.
6
6
 
7
- 📚 **[Full Documentation](https://github.com/tripolskypetr/agent-swarm-kit/tree/master/docs)** | 🌟 **[Try It Now](#getting-started)**
7
+ 📚 **[Full Documentation](https://agent-swarm.github.io/documents/agent-swarm-kit.html)** | 🌟 **[Try It Now](#quick-example)**
8
8
 
9
9
  ![Agent Swarm Schema](https://raw.githubusercontent.com/tripolskypetr/agent-swarm-kit/master/schema.png)
10
10
 
@@ -14,7 +14,7 @@ Unleash the power of collaborative AI with `agent-swarm-kit`! This library empow
14
14
 
15
15
  - **Multi-Agent Collaboration**: Orchestrate multiple AI agents, each with unique roles—like triage, sales, or refunds—working as a team.
16
16
  - **Lightweight & Flexible**: Unlike bulky frameworks, our API is simple and delegates prompt engineering to your team.
17
- - **Framework-Agnostic**: Works with any AI model—OpenAI, Ollama, Mistral, Nemotron, you name it!
17
+ - **Framework-Agnostic**: Works with any AI provider—OpenAI, Ollama, LMStudio, Claude, Grok, YandexGPT, Gemini, you name it!
18
18
  - **Robust Validation**: Built-in checks ensure tools, agents, and outputs are always on point.
19
19
  - **Real-Time Interaction**: Supports message scheduling and WebSocket channels for dynamic user input.
20
20
 
@@ -170,6 +170,8 @@ addSwarm({
170
170
  });
171
171
 
172
172
  const { complete, dispose } = session(clientId, SwarmName.TestSwarm)
173
+
174
+ complete("I need a refund!").then(console.log);
173
175
  ```
174
176
 
175
177
  ---
@@ -294,7 +296,7 @@ Storage.take("reduce pain, fever", 1, "client-xyz", TEST_AGENT, TEST_STORAGE)
294
296
  - **Navigation**: Smoothly switches between agents without deadlocks.
295
297
  - **Performance**: Efficient connection disposal and history management.
296
298
 
297
- See the **[Test Cases](#test-cases)** section in the docs for details.
299
+ See the **[Test Cases](https://github.com/tripolskypetr/agent-swarm-kit/blob/master/TEST.md)** section in the docs for details.
298
300
 
299
301
  ---
300
302
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.0.162",
3
+ "version": "1.0.164",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",