agent-swarm-kit 1.1.72 → 1.1.73
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.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -417,9 +417,7 @@ P.S. [openai threads](https://platform.openai.com/docs/api-reference/threads) do
|
|
|
417
417
|
|
|
418
418
|
## 🔌 Tool and System Prompt Reflection
|
|
419
419
|
|
|
420
|
-
Enhance your LLMs with flexible, runtime-configurable tools and system prompts using `agent-swarm-kit`. The library allows you to define tools with dynamic interfaces, enabling agents to adapt their functionality based on context or agent-specific requirements. This makes it easy to integrate specialized capabilities, like fetching real-time data or generating reports, with minimal boilerplate.
|
|
421
|
-
|
|
422
|
-
**Example**: Below is a tool that dynamically fetches short-range EMA (Exponential Moving Average) signals for a trading agent, with a description tailored to the agent's display name:
|
|
420
|
+
Enhance your LLMs with flexible, runtime-configurable tools and system prompts using `agent-swarm-kit`. The library allows you to define tools with dynamic interfaces, enabling agents to adapt their functionality based on context or agent-specific requirements. This makes it easy to integrate specialized capabilities, like fetching real-time data or generating reports without additional tool arguments, with minimal boilerplate. 🛠️
|
|
423
421
|
|
|
424
422
|
```tsx
|
|
425
423
|
addTool({
|
|
@@ -449,6 +447,8 @@ addTool({
|
|
|
449
447
|
});
|
|
450
448
|
```
|
|
451
449
|
|
|
450
|
+
**Example**: Below is a tool that dynamically fetches short-range EMA (Exponential Moving Average) signals for a trading agent, with a description tailored to the agent's display name 🌐
|
|
451
|
+
|
|
452
452
|
---
|
|
453
453
|
|
|
454
454
|
## ✅ Tested & Reliable
|