@voltagent/core 0.1.5 → 0.1.7
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 +2 -2
- package/dist/index.d.ts +1233 -1118
- package/dist/index.js +789 -258
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +781 -255
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -4
- package/src/agent/history/index.spec.ts +0 -287
- package/src/agent/history/index.ts +0 -437
- package/src/agent/history/types.ts +0 -25
- package/src/agent/hooks/index.spec.ts +0 -118
- package/src/agent/hooks/index.ts +0 -68
- package/src/agent/index.spec.ts +0 -922
- package/src/agent/index.ts +0 -1360
- package/src/agent/providers/base/index.ts +0 -1
- package/src/agent/providers/base/types.ts +0 -368
- package/src/agent/providers/index.ts +0 -1
- package/src/agent/subagent/index.spec.ts +0 -286
- package/src/agent/subagent/index.ts +0 -386
- package/src/agent/types.ts +0 -324
- package/src/events/index.spec.ts +0 -69
- package/src/events/index.ts +0 -459
- package/src/events/types.ts +0 -45
- package/src/index.ts +0 -138
- package/src/mcp/client/index.spec.ts +0 -484
- package/src/mcp/client/index.ts +0 -323
- package/src/mcp/configuration/index.spec.ts +0 -550
- package/src/mcp/configuration/index.ts +0 -333
- package/src/mcp/index.ts +0 -3
- package/src/mcp/types.ts +0 -229
- package/src/memory/in-memory/index.spec.ts +0 -745
- package/src/memory/in-memory/index.ts +0 -519
- package/src/memory/index.ts +0 -9
- package/src/memory/libsql/index.spec.ts +0 -526
- package/src/memory/libsql/index.ts +0 -1012
- package/src/memory/manager/index.spec.ts +0 -846
- package/src/memory/manager/index.ts +0 -757
- package/src/memory/types.ts +0 -209
- package/src/retriever/index.ts +0 -8
- package/src/retriever/retriever.spec.ts +0 -91
- package/src/retriever/retriever.ts +0 -74
- package/src/retriever/tools/index.spec.ts +0 -97
- package/src/retriever/tools/index.ts +0 -48
- package/src/retriever/types.ts +0 -47
- package/src/server/api.ts +0 -694
- package/src/server/index.ts +0 -186
- package/src/server/registry.ts +0 -160
- package/src/server/types.ts +0 -35
- package/src/tool/index.spec.ts +0 -91
- package/src/tool/index.ts +0 -104
- package/src/tool/manager/index.spec.ts +0 -165
- package/src/tool/manager/index.ts +0 -163
- package/src/types/npm-check.d.ts +0 -34
- package/src/types.ts +0 -44
- package/src/utils/createPrompt/index.spec.ts +0 -103
- package/src/utils/createPrompt/index.ts +0 -41
- package/src/utils/createPrompt/prompt.example.ts +0 -60
- package/src/utils/index.ts +0 -7
- package/src/utils/node-utils.ts +0 -44
- package/src/utils/toolParser/index.spec.ts +0 -200
- package/src/utils/toolParser/index.ts +0 -105
- package/src/utils/update/index.ts +0 -325
- package/src/voice/index.ts +0 -1
- package/src/voice/types.ts +0 -129
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ Instead of building everything from scratch, VoltAgent provides ready-made, modu
|
|
|
53
53
|
- **Core Engine (`@voltagent/core`)**: The heart of VoltAgent, providing fundamental capabilities for your AI agents Define individual agents with specific roles, tools, and memory.
|
|
54
54
|
- **Multi-Agent Systems**: Architect complex applications by coordinating multiple specialized agents using Supervisors.
|
|
55
55
|
- **Extensible Packages**: Enhance functionality with packages like `@voltagent/voice` for voice interactions.
|
|
56
|
-
- **Tooling & Integrations**: Equip agents with tools to connect to external APIs, databases, and services, enabling them to perform real-world tasks. **Supports the [Model
|
|
56
|
+
- **Tooling & Integrations**: Equip agents with tools to connect to external APIs, databases, and services, enabling them to perform real-world tasks. **Supports the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) for standardized tool interactions.**
|
|
57
57
|
- **Data Retrieval & RAG**: Implement specialized retriever agents for efficient information fetching and **Retrieval-Augmented Generation (RAG)**.
|
|
58
58
|
- **Memory**: Enable agents to remember past interactions for more natural and context-aware conversations.
|
|
59
59
|
- **LLM Compatibility**: Works with popular AI models from OpenAI, Google, Anthropic, and more, allowing easy switching.
|
|
@@ -152,7 +152,7 @@ Your agent is now running! To interact with it:
|
|
|
152
152
|
- **Observability & Debugging:** Visually monitor agent states, interactions, logs, and performance via the [VoltAgent Console](https://console.voltagent.dev).
|
|
153
153
|
- **Voice Interaction:** Build voice-enabled agents capable of speech recognition and synthesis using the `@voltagent/voice` package.
|
|
154
154
|
- **Data Retrieval & RAG:** Integrate specialized retriever agents for efficient information fetching and **Retrieval-Augmented Generation (RAG)** from various sources.
|
|
155
|
-
- **Model
|
|
155
|
+
- **Model Context Protocol (MCP) Support:** Connect to external tool servers (HTTP/stdio) adhering to the [MCP standard](https://modelcontextprotocol.io/) for extended capabilities.
|
|
156
156
|
- **Prompt Engineering Tools:** Leverage utilities like `createPrompt` for crafting and managing effective prompts for your agents.
|
|
157
157
|
- **Framework Compatibility:** Designed for easy integration into existing Node.js applications and popular frameworks.
|
|
158
158
|
|