@voltagent/core 0.1.26 → 0.1.28
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 +7 -7
- package/dist/index.d.ts +531 -451
- package/dist/index.js +256 -40
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +253 -40
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ Instead of building everything from scratch, VoltAgent provides ready-made, modu
|
|
|
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.
|
|
60
|
-
- **Developer Ecosystem**: Includes helpers like `create-voltagent-app`, `@voltagent/cli`, and the visual [
|
|
60
|
+
- **Developer Ecosystem**: Includes helpers like `create-voltagent-app`, `@voltagent/cli`, and the visual [VoltOps LLM Observability Platform](https://console.voltagent.dev) for quick setup, monitoring, and debugging.
|
|
61
61
|
|
|
62
62
|
In essence, VoltAgent helps developers build sophisticated AI applications faster and more reliably, avoiding repetitive setup and the limitations of simpler tools.
|
|
63
63
|
|
|
@@ -76,7 +76,7 @@ VoltAgent provides a middle ground, offering structure and components without sa
|
|
|
76
76
|
- **Flexibility:** Full control over agent behavior, LLM choice, tool integrations, and UI connections.
|
|
77
77
|
- **Avoid Lock-in:** Freedom to switch AI providers and models as needed.
|
|
78
78
|
- **Cost Efficiency:** Features designed to optimize AI service usage and reduce redundant calls.
|
|
79
|
-
- **Visual Monitoring:** Use the [
|
|
79
|
+
- **Visual Monitoring:** Use the [VoltOps LLM Observability Platform](https://console.voltagent.dev) to track agent performance, inspect state, and debug visually.
|
|
80
80
|
|
|
81
81
|
VoltAgent empowers developers to build their envisioned AI applications efficiently, from simple helpers to complex systems.
|
|
82
82
|
|
|
@@ -128,19 +128,19 @@ VOLTAGENT SERVER STARTED SUCCESSFULLY
|
|
|
128
128
|
══════════════════════════════════════════════════
|
|
129
129
|
✓ HTTP Server: http://localhost:3141
|
|
130
130
|
|
|
131
|
-
|
|
131
|
+
VoltOps Platform: https://console.voltagent.dev
|
|
132
132
|
══════════════════════════════════════════════════
|
|
133
133
|
```
|
|
134
134
|
|
|
135
135
|
Your agent is now running! To interact with it:
|
|
136
136
|
|
|
137
|
-
1. Open the Console: Click the [
|
|
138
|
-
2. Find Your Agent: On the
|
|
137
|
+
1. Open the Console: Click the [VoltOps LLM Observability Platform](https://console.voltagent.dev) link in your terminal output (or copy-paste it into your browser).
|
|
138
|
+
2. Find Your Agent: On the VoltOps LLM Observability Platform page, you should see your agent listed (e.g., "my-agent").
|
|
139
139
|
3. Open Agent Details: Click on your agent's name.
|
|
140
140
|
4. Start Chatting: On the agent detail page, click the chat icon in the bottom right corner to open the chat window.
|
|
141
141
|
5. Send a Message: Type a message like "Hello" and press Enter.
|
|
142
142
|
|
|
143
|
-

|
|
144
144
|
|
|
145
145
|
## Key Features
|
|
146
146
|
|
|
@@ -149,7 +149,7 @@ Your agent is now running! To interact with it:
|
|
|
149
149
|
- **Tool Usage & Lifecycle:** Equip agents with custom or pre-built tools (functions) with type-safety (Zod), lifecycle hooks, and cancellation support to interact with external systems.
|
|
150
150
|
- **Flexible LLM Support:** Integrate seamlessly with various LLM providers (OpenAI, Anthropic, Google, etc.) and easily switch between models.
|
|
151
151
|
- **Memory Management:** Enable agents to retain context across interactions using different configurable memory providers.
|
|
152
|
-
- **Observability & Debugging:** Visually monitor agent states, interactions, logs, and performance via the [
|
|
152
|
+
- **Observability & Debugging:** Visually monitor agent states, interactions, logs, and performance via the [VoltOps LLM Observability Platform](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
155
|
- **Model Context Protocol (MCP) Support:** Connect to external tool servers (HTTP/stdio) adhering to the [MCP standard](https://modelcontextprotocol.io/) for extended capabilities.
|