@copilotkitnext/agent 1.51.3-next.7 → 1.51.3

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,19 @@
1
1
  # @copilotkitnext/agent
2
2
 
3
+ ## 1.51.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d268c49: fix: add apiKey parameter to BuiltInAgentConfiguration
8
+ - d36fc1e: Add UMD export
9
+ - 29d70a5: Add new "forwardDeveloperMessages" and "forwardSystemMessages" prop to BuiltInAgent
10
+
11
+ ## 1.51.3-next.8
12
+
13
+ ### Patch Changes
14
+
15
+ - d36fc1e: Add UMD export
16
+
3
17
  ## 1.51.3-next.7
4
18
 
5
19
  ## 1.51.3-next.6
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { Message, RunAgentInput, AbstractAgent, BaseEvent } from '@ag-ui/client';
2
- import { LanguageModel, ModelMessage, ToolSet, ToolChoice } from 'ai';
1
+ import { AbstractAgent, RunAgentInput, BaseEvent, Message } from '@ag-ui/client';
2
+ import { LanguageModel, ToolChoice, ModelMessage, ToolSet } from 'ai';
3
3
  import { Observable } from 'rxjs';
4
4
  import { z } from 'zod';
5
5
  import { StreamableHTTPClientTransportOptions } from '@modelcontextprotocol/sdk/client/streamableHttp.js';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { Message, RunAgentInput, AbstractAgent, BaseEvent } from '@ag-ui/client';
2
- import { LanguageModel, ModelMessage, ToolSet, ToolChoice } from 'ai';
1
+ import { AbstractAgent, RunAgentInput, BaseEvent, Message } from '@ag-ui/client';
2
+ import { LanguageModel, ToolChoice, ModelMessage, ToolSet } from 'ai';
3
3
  import { Observable } from 'rxjs';
4
4
  import { z } from 'zod';
5
5
  import { StreamableHTTPClientTransportOptions } from '@modelcontextprotocol/sdk/client/streamableHttp.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@copilotkitnext/agent",
3
- "version": "1.51.3-next.7",
3
+ "version": "1.51.3",
4
4
  "description": "Basic Agent for CopilotKit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -21,8 +21,8 @@
21
21
  "tsup": "^8.5.0",
22
22
  "typescript": "5.8.2",
23
23
  "vitest": "^3.0.5",
24
- "@copilotkitnext/eslint-config": "1.51.3-next.7",
25
- "@copilotkitnext/typescript-config": "1.51.3-next.7"
24
+ "@copilotkitnext/eslint-config": "1.51.3",
25
+ "@copilotkitnext/typescript-config": "1.51.3"
26
26
  },
27
27
  "dependencies": {
28
28
  "@ag-ui/client": "0.0.42",