@iqai/adk 0.3.0 → 0.3.1

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @iqai/adk
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - b6c0344: Improved adk cli experience
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -73,6 +73,7 @@ OPENAI_API_KEY=your_openai_api_key
73
73
  ANTHROPIC_API_KEY=your_anthropic_api_key
74
74
  GOOGLE_API_KEY=your_google_api_key
75
75
  ```
76
+
76
77
  The library uses `dotenv` to load these variables automatically if `dotenv.config()` is called in your application.
77
78
 
78
79
  ## 📖 Basic Usage
@@ -167,6 +168,7 @@ async function createWorkflowAgent() {
167
168
  ```
168
169
 
169
170
  **Benefits of AgentBuilder:**
171
+
170
172
  - **Reduced Boilerplate**: ~80% less setup code compared to manual configuration
171
173
  - **Fluent Interface**: Readable, chainable method calls
172
174
  - **Automatic Management**: Handles session and runner creation automatically
@@ -328,4 +330,4 @@ MIT License - see [LICENSE](https://github.com/IQAIcom/adk-ts/blob/main/LICENSE.
328
330
 
329
331
  ---
330
332
 
331
- **Ready to build your first AI agent?** Visit [https://adk.iqai.com](https://adk.iqai.com) to get started!
333
+ **Ready to build your first AI agent?** Visit [https://adk.iqai.com](https://adk.iqai.com) to get started!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iqai/adk",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Agent Development Kit for TypeScript with multi-provider LLM support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,7 +39,6 @@
39
39
  "@opentelemetry/sdk-trace-node": "^2.0.1",
40
40
  "@opentelemetry/semantic-conventions": "^1.34.0",
41
41
  "@types/cors": "^2.8.19",
42
- "@types/express": "^4.17.21",
43
42
  "ai": "^4.3.16",
44
43
  "axios": "^1.6.2",
45
44
  "chalk": "^5.4.1",
@@ -48,7 +47,6 @@
48
47
  "dockerode": "^4.0.7",
49
48
  "dotenv": "^16.4.7",
50
49
  "drizzle-orm": "^0.43.1",
51
- "express": "^4.19.2",
52
50
  "kysely": "^0.28.2",
53
51
  "openai": "^4.93.0",
54
52
  "socket.io": "^4.8.1",