@iqai/adk 0.0.14 → 0.1.0
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 +18 -0
- package/README.md +1 -1
- package/dist/index.d.mts +3077 -2365
- package/dist/index.d.ts +3077 -2365
- package/dist/index.js +7041 -4296
- package/dist/index.mjs +7042 -4297
- package/package.json +32 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @iqai/adk
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 481e0da: Rewrites common interfaces to match more close to adk-python
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 1741097: Fixes openai models not getting system message
|
|
12
|
+
- 75309a1: postgres-session-service: new fromConnectionString() factory method. fix minor duplication bug
|
|
13
|
+
- 33b1887: added planners
|
|
14
|
+
|
|
15
|
+
## 0.0.15
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 033217e: google-llm: exclude exclusive min/max from tool calls
|
|
20
|
+
|
|
3
21
|
## 0.0.14
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ dotenv.config();
|
|
|
68
68
|
// Instantiate the agent
|
|
69
69
|
const myAgent = new Agent({
|
|
70
70
|
name: "simple_query_assistant",
|
|
71
|
-
model: "gemini-2.5-flash
|
|
71
|
+
model: "gemini-2.5-flash", // Or "gpt-4-turbo", "claude-3-opus"
|
|
72
72
|
description: "A basic assistant to answer questions.",
|
|
73
73
|
instructions: "You are a helpful AI. Respond clearly and concisely."
|
|
74
74
|
});
|