@copilotkit/runtime 1.4.0-pre-1-4-0.14 → 1.4.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 +68 -150
- package/dist/{chunk-NFMXFL2C.mjs → chunk-6B4PG66A.mjs} +2 -2
- package/dist/{chunk-X4FFTYTH.mjs → chunk-OUQMGVUK.mjs} +3 -3
- package/dist/chunk-OUQMGVUK.mjs.map +1 -0
- package/dist/{chunk-6H45CJUK.mjs → chunk-RI2I744Y.mjs} +2 -2
- package/dist/{chunk-N4ROMSZN.mjs → chunk-RKI5NCKX.mjs} +2 -2
- package/dist/{chunk-WHJ3DAYL.mjs → chunk-ZOC3UIQP.mjs} +1 -1
- package/dist/chunk-ZOC3UIQP.mjs.map +1 -0
- package/dist/{groq-adapter-2f8fd767.d.ts → groq-adapter-b6c2b7ec.d.ts} +5 -15
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/lib/index.d.ts +1 -1
- package/dist/lib/index.js +1 -1
- 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.d.ts +2 -4
- package/dist/service-adapters/index.js.map +1 -1
- package/dist/service-adapters/index.mjs +1 -1
- package/package.json +4 -4
- package/src/service-adapters/anthropic/anthropic-adapter.ts +1 -3
- package/src/service-adapters/google/google-genai-adapter.ts +1 -3
- package/src/service-adapters/groq/groq-adapter.ts +1 -3
- package/src/service-adapters/langchain/langchain-adapter.ts +1 -3
- package/src/service-adapters/openai/openai-adapter.ts +2 -6
- package/src/service-adapters/openai/openai-assistant-adapter.ts +1 -3
- package/dist/chunk-WHJ3DAYL.mjs.map +0 -1
- package/dist/chunk-X4FFTYTH.mjs.map +0 -1
- /package/dist/{chunk-NFMXFL2C.mjs.map → chunk-6B4PG66A.mjs.map} +0 -0
- /package/dist/{chunk-6H45CJUK.mjs.map → chunk-RI2I744Y.mjs.map} +0 -0
- /package/dist/{chunk-N4ROMSZN.mjs.map → chunk-RKI5NCKX.mjs.map} +0 -0
package/dist/index.mjs
CHANGED
|
@@ -3,13 +3,13 @@ import {
|
|
|
3
3
|
config,
|
|
4
4
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
5
5
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-RI2I744Y.mjs";
|
|
7
7
|
import {
|
|
8
8
|
copilotRuntimeNestEndpoint
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-6B4PG66A.mjs";
|
|
10
10
|
import {
|
|
11
11
|
copilotRuntimeNodeExpressEndpoint
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-RKI5NCKX.mjs";
|
|
13
13
|
import {
|
|
14
14
|
CopilotRuntime,
|
|
15
15
|
buildSchema,
|
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
getCommonConfig,
|
|
21
21
|
langGraphPlatformEndpoint,
|
|
22
22
|
resolveEndpointType
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-OUQMGVUK.mjs";
|
|
24
24
|
import {
|
|
25
25
|
AnthropicAdapter,
|
|
26
26
|
GoogleGenerativeAIAdapter,
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
OpenAIAssistantAdapter,
|
|
31
31
|
RemoteChain,
|
|
32
32
|
UnifyAdapter
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-ZOC3UIQP.mjs";
|
|
34
34
|
import {
|
|
35
35
|
GuardrailsValidationFailureResponse,
|
|
36
36
|
MessageStreamInterruptedResponse,
|
package/dist/lib/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { h as CommonConfig, b as CopilotRequestContextProperties, a as CopilotRuntime, C as CopilotRuntimeConstructorParams, d as CreateCopilotRuntimeServerOptions, G as GraphQLContext, g as buildSchema, c as copilotKitEndpoint, e as createContext, f as flattenToolCallsNoDuplicates, i as getCommonConfig, l as langGraphPlatformEndpoint, r as resolveEndpointType } from '../copilot-runtime-335a610d.js';
|
|
2
|
-
export { G as GoogleGenerativeAIAdapter, f as GroqAdapter, e as GroqAdapterParams, L as LangChainAdapter, a as OpenAIAdapter, O as OpenAIAdapterParams, c as OpenAIAssistantAdapter, b as OpenAIAssistantAdapterParams, d as UnifyAdapter, U as UnifyAdapterParams } from '../groq-adapter-
|
|
2
|
+
export { G as GoogleGenerativeAIAdapter, f as GroqAdapter, e as GroqAdapterParams, L as LangChainAdapter, a as OpenAIAdapter, O as OpenAIAdapterParams, c as OpenAIAssistantAdapter, b as OpenAIAssistantAdapterParams, d as UnifyAdapter, U as UnifyAdapterParams } from '../groq-adapter-b6c2b7ec.js';
|
|
3
3
|
export { CopilotRuntimeServerInstance, config, copilotRuntimeNextJSAppRouterEndpoint, copilotRuntimeNextJSPagesRouterEndpoint } from './integrations/index.js';
|
|
4
4
|
export { copilotRuntimeNodeHttpEndpoint } from './integrations/node-http/index.js';
|
|
5
5
|
export { copilotRuntimeNodeExpressEndpoint } from './integrations/node-express/index.js';
|