@voltagent/core 0.1.5 → 0.1.6

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 (64) hide show
  1. package/README.md +2 -2
  2. package/dist/index.d.ts +1178 -1050
  3. package/dist/index.js +578 -75
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.mjs +567 -69
  6. package/dist/index.mjs.map +1 -1
  7. package/package.json +9 -4
  8. package/src/agent/history/index.spec.ts +0 -287
  9. package/src/agent/history/index.ts +0 -437
  10. package/src/agent/history/types.ts +0 -25
  11. package/src/agent/hooks/index.spec.ts +0 -118
  12. package/src/agent/hooks/index.ts +0 -68
  13. package/src/agent/index.spec.ts +0 -922
  14. package/src/agent/index.ts +0 -1360
  15. package/src/agent/providers/base/index.ts +0 -1
  16. package/src/agent/providers/base/types.ts +0 -368
  17. package/src/agent/providers/index.ts +0 -1
  18. package/src/agent/subagent/index.spec.ts +0 -286
  19. package/src/agent/subagent/index.ts +0 -386
  20. package/src/agent/types.ts +0 -324
  21. package/src/events/index.spec.ts +0 -69
  22. package/src/events/index.ts +0 -459
  23. package/src/events/types.ts +0 -45
  24. package/src/index.ts +0 -138
  25. package/src/mcp/client/index.spec.ts +0 -484
  26. package/src/mcp/client/index.ts +0 -323
  27. package/src/mcp/configuration/index.spec.ts +0 -550
  28. package/src/mcp/configuration/index.ts +0 -333
  29. package/src/mcp/index.ts +0 -3
  30. package/src/mcp/types.ts +0 -229
  31. package/src/memory/in-memory/index.spec.ts +0 -745
  32. package/src/memory/in-memory/index.ts +0 -519
  33. package/src/memory/index.ts +0 -9
  34. package/src/memory/libsql/index.spec.ts +0 -526
  35. package/src/memory/libsql/index.ts +0 -1012
  36. package/src/memory/manager/index.spec.ts +0 -846
  37. package/src/memory/manager/index.ts +0 -757
  38. package/src/memory/types.ts +0 -209
  39. package/src/retriever/index.ts +0 -8
  40. package/src/retriever/retriever.spec.ts +0 -91
  41. package/src/retriever/retriever.ts +0 -74
  42. package/src/retriever/tools/index.spec.ts +0 -97
  43. package/src/retriever/tools/index.ts +0 -48
  44. package/src/retriever/types.ts +0 -47
  45. package/src/server/api.ts +0 -694
  46. package/src/server/index.ts +0 -186
  47. package/src/server/registry.ts +0 -160
  48. package/src/server/types.ts +0 -35
  49. package/src/tool/index.spec.ts +0 -91
  50. package/src/tool/index.ts +0 -104
  51. package/src/tool/manager/index.spec.ts +0 -165
  52. package/src/tool/manager/index.ts +0 -163
  53. package/src/types/npm-check.d.ts +0 -34
  54. package/src/types.ts +0 -44
  55. package/src/utils/createPrompt/index.spec.ts +0 -103
  56. package/src/utils/createPrompt/index.ts +0 -41
  57. package/src/utils/createPrompt/prompt.example.ts +0 -60
  58. package/src/utils/index.ts +0 -7
  59. package/src/utils/node-utils.ts +0 -44
  60. package/src/utils/toolParser/index.spec.ts +0 -200
  61. package/src/utils/toolParser/index.ts +0 -105
  62. package/src/utils/update/index.ts +0 -325
  63. package/src/voice/index.ts +0 -1
  64. 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 Control Protocol (MCP)](https://modelcontextprotocol.io/) for standardized tool 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 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 Control Protocol (MCP) Support:** Connect to external tool servers (HTTP/stdio) adhering to the [MCP standard](https://modelcontextprotocol.io/) for extended capabilities.
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