@copilotkit/runtime 1.8.14-next.3 → 1.8.14-next.5
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 +16 -0
- package/dist/{chunk-6P6VMQLZ.mjs → chunk-A6TYJF5H.mjs} +9 -5
- package/dist/chunk-A6TYJF5H.mjs.map +1 -0
- package/dist/{chunk-MVKCCH5U.mjs → chunk-GEZX4PJT.mjs} +16 -3
- package/dist/chunk-GEZX4PJT.mjs.map +1 -0
- package/dist/{chunk-T2RKWYXN.mjs → chunk-QNIEFAO6.mjs} +2 -2
- package/dist/{chunk-BMA7V5T7.mjs → chunk-XNS4UOAA.mjs} +2 -2
- package/dist/{chunk-C7XHY7LW.mjs → chunk-Y6MICBVG.mjs} +2 -2
- package/dist/index.js +24 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/lib/index.js +17 -6
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +5 -5
- package/dist/lib/integrations/index.js +1 -1
- package/dist/lib/integrations/index.js.map +1 -1
- package/dist/lib/integrations/index.mjs +5 -5
- package/dist/lib/integrations/nest/index.js +1 -1
- package/dist/lib/integrations/nest/index.js.map +1 -1
- package/dist/lib/integrations/nest/index.mjs +3 -3
- package/dist/lib/integrations/node-express/index.js +1 -1
- package/dist/lib/integrations/node-express/index.js.map +1 -1
- package/dist/lib/integrations/node-express/index.mjs +3 -3
- package/dist/lib/integrations/node-http/index.js +1 -1
- package/dist/lib/integrations/node-http/index.js.map +1 -1
- package/dist/lib/integrations/node-http/index.mjs +2 -2
- package/dist/service-adapters/index.js +15 -2
- package/dist/service-adapters/index.js.map +1 -1
- package/dist/service-adapters/index.mjs +1 -1
- package/package.json +2 -2
- package/src/lib/runtime/agui-action.ts +5 -2
- package/src/service-adapters/anthropic/anthropic-adapter.ts +14 -1
- package/src/service-adapters/google/google-genai-adapter.test.ts +104 -0
- package/src/service-adapters/google/google-genai-adapter.ts +19 -1
- package/dist/chunk-6P6VMQLZ.mjs.map +0 -1
- package/dist/chunk-MVKCCH5U.mjs.map +0 -1
- /package/dist/{chunk-T2RKWYXN.mjs.map → chunk-QNIEFAO6.mjs.map} +0 -0
- /package/dist/{chunk-BMA7V5T7.mjs.map → chunk-XNS4UOAA.mjs.map} +0 -0
- /package/dist/{chunk-C7XHY7LW.mjs.map → chunk-Y6MICBVG.mjs.map} +0 -0
package/dist/lib/index.mjs
CHANGED
|
@@ -3,13 +3,13 @@ import {
|
|
|
3
3
|
config,
|
|
4
4
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
5
5
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-QNIEFAO6.mjs";
|
|
7
7
|
import {
|
|
8
8
|
copilotRuntimeNestEndpoint
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-Y6MICBVG.mjs";
|
|
10
10
|
import {
|
|
11
11
|
copilotRuntimeNodeExpressEndpoint
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-XNS4UOAA.mjs";
|
|
13
13
|
import {
|
|
14
14
|
CopilotRuntime,
|
|
15
15
|
addCustomHeaderPlugin,
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
getCommonConfig,
|
|
26
26
|
langGraphPlatformEndpoint,
|
|
27
27
|
resolveEndpointType
|
|
28
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-A6TYJF5H.mjs";
|
|
29
29
|
import {
|
|
30
30
|
GoogleGenerativeAIAdapter,
|
|
31
31
|
GroqAdapter,
|
|
@@ -33,7 +33,7 @@ import {
|
|
|
33
33
|
OpenAIAdapter,
|
|
34
34
|
OpenAIAssistantAdapter,
|
|
35
35
|
UnifyAdapter
|
|
36
|
-
} from "../chunk-
|
|
36
|
+
} from "../chunk-GEZX4PJT.mjs";
|
|
37
37
|
import "../chunk-5BIEM2UU.mjs";
|
|
38
38
|
import "../chunk-SHBDMA63.mjs";
|
|
39
39
|
import "../chunk-2OZAGFV3.mjs";
|