@iqai/adk 0.1.4 → 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.
- package/CHANGELOG.md +28 -0
- package/dist/index.d.mts +316 -64
- package/dist/index.d.ts +316 -64
- package/dist/index.js +1653 -1016
- package/dist/index.mjs +1438 -801
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @iqai/adk
|
|
2
2
|
|
|
3
|
+
## 0.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6bc189d: Adds coingecko mcp server definition
|
|
8
|
+
|
|
9
|
+
## 0.1.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- f5962ca: Adds AI-SDK integration with comprehensive tool calling support
|
|
14
|
+
|
|
15
|
+
This release introduces integration with Vercel's AI SDK, expanding the platform's capabilities to support a wider range of large language models without requiring manual maintenance of model synchronization.
|
|
16
|
+
|
|
17
|
+
## Key Features
|
|
18
|
+
|
|
19
|
+
- **AI-SDK Integration**: New `AiSdkLlm` class that integrates with Vercel AI SDK, supporting multiple providers (Google, OpenAI, Anthropic)
|
|
20
|
+
- **Tool Calling Support**: Robust tool calling capabilities with automatic transformation of ADK function declarations to AI SDK tool definitions using Zod schemas
|
|
21
|
+
- **Agent Builder Support**: Enhanced agent builder with AI-SDK model support
|
|
22
|
+
- **Example Implementation**: Complete weather agent example demonstrating AI-SDK usage with tool calling
|
|
23
|
+
|
|
24
|
+
## Technical Details
|
|
25
|
+
|
|
26
|
+
- Adds `ai-sdk.ts` model implementation with streaming support
|
|
27
|
+
- Implements message format conversion between ADK and AI SDK formats
|
|
28
|
+
- Supports both streaming and non-streaming model interactions
|
|
29
|
+
- Maintains backward compatibility with existing ADK functionality
|
|
30
|
+
|
|
3
31
|
## 0.1.4
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|