@copilotkit/runtime 1.10.5-next.0 → 1.10.5-next.10

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +68 -0
  2. package/__snapshots__/schema/schema.graphql +6 -0
  3. package/dist/{chunk-2JRX6LGW.mjs → chunk-COGFQ4V4.mjs} +2 -2
  4. package/dist/{chunk-WGOBL6DV.mjs → chunk-M65Z27MR.mjs} +2 -2
  5. package/dist/{chunk-HZWVUP7K.mjs → chunk-NFB4H6NT.mjs} +211 -144
  6. package/dist/chunk-NFB4H6NT.mjs.map +1 -0
  7. package/dist/{chunk-4GRKJVD6.mjs → chunk-NNBTOZO3.mjs} +2 -2
  8. package/dist/{chunk-TPMK44TE.mjs → chunk-Y5BKTUH2.mjs} +20 -6
  9. package/dist/chunk-Y5BKTUH2.mjs.map +1 -0
  10. package/dist/graphql/types/converted/index.d.ts +1 -1
  11. package/dist/{groq-adapter-4ba7b2f0.d.ts → groq-adapter-c8aec5c5.d.ts} +1 -1
  12. package/dist/{index-d4614f9b.d.ts → index-96b330da.d.ts} +1 -1
  13. package/dist/index.d.ts +4 -4
  14. package/dist/index.js +247 -166
  15. package/dist/index.js.map +1 -1
  16. package/dist/index.mjs +5 -5
  17. package/dist/{langserve-3f99bf2e.d.ts → langserve-0c6100e3.d.ts} +1 -1
  18. package/dist/lib/index.d.ts +12 -6
  19. package/dist/lib/index.js +247 -166
  20. package/dist/lib/index.js.map +1 -1
  21. package/dist/lib/index.mjs +5 -5
  22. package/dist/lib/integrations/index.d.ts +4 -4
  23. package/dist/lib/integrations/index.js +196 -151
  24. package/dist/lib/integrations/index.js.map +1 -1
  25. package/dist/lib/integrations/index.mjs +4 -4
  26. package/dist/lib/integrations/nest/index.d.ts +3 -3
  27. package/dist/lib/integrations/nest/index.js +196 -151
  28. package/dist/lib/integrations/nest/index.js.map +1 -1
  29. package/dist/lib/integrations/nest/index.mjs +2 -2
  30. package/dist/lib/integrations/node-express/index.d.ts +3 -3
  31. package/dist/lib/integrations/node-express/index.js +196 -151
  32. package/dist/lib/integrations/node-express/index.js.map +1 -1
  33. package/dist/lib/integrations/node-express/index.mjs +2 -2
  34. package/dist/lib/integrations/node-http/index.d.ts +3 -3
  35. package/dist/lib/integrations/node-http/index.js +196 -151
  36. package/dist/lib/integrations/node-http/index.js.map +1 -1
  37. package/dist/lib/integrations/node-http/index.mjs +1 -1
  38. package/dist/service-adapters/index.d.ts +5 -5
  39. package/dist/{shared-26958730.d.ts → shared-0a7346ce.d.ts} +19 -2
  40. package/package.json +11 -11
  41. package/src/graphql/inputs/copilot-context.input.ts +10 -0
  42. package/src/graphql/inputs/generate-copilot-response.input.ts +4 -0
  43. package/src/graphql/resolvers/copilot.resolver.ts +1 -0
  44. package/src/lib/runtime/agui-action.ts +11 -0
  45. package/src/lib/runtime/copilot-runtime.ts +30 -0
  46. package/src/lib/runtime/langgraph/langgraph-agent.ts +28 -7
  47. package/src/lib/runtime/remote-actions.ts +4 -0
  48. package/dist/chunk-HZWVUP7K.mjs.map +0 -1
  49. package/dist/chunk-TPMK44TE.mjs.map +0 -1
  50. /package/dist/{chunk-2JRX6LGW.mjs.map → chunk-COGFQ4V4.mjs.map} +0 -0
  51. /package/dist/{chunk-WGOBL6DV.mjs.map → chunk-M65Z27MR.mjs.map} +0 -0
  52. /package/dist/{chunk-4GRKJVD6.mjs.map → chunk-NNBTOZO3.mjs.map} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,73 @@
1
1
  # @copilotkit/runtime
2
2
 
3
+ ## 1.10.5-next.10
4
+
5
+ ### Patch Changes
6
+
7
+ - @copilotkit/shared@1.10.5-next.10
8
+
9
+ ## 1.10.5-next.9
10
+
11
+ ### Patch Changes
12
+
13
+ - f199c94: - feat: update agui packages
14
+ - @copilotkit/shared@1.10.5-next.9
15
+
16
+ ## 1.10.5-next.8
17
+
18
+ ### Patch Changes
19
+
20
+ - @copilotkit/shared@1.10.5-next.8
21
+
22
+ ## 1.10.5-next.7
23
+
24
+ ### Patch Changes
25
+
26
+ - c9e32b0: - fix: upgrade agui langgraph version
27
+ - @copilotkit/shared@1.10.5-next.7
28
+
29
+ ## 1.10.5-next.6
30
+
31
+ ### Patch Changes
32
+
33
+ - @copilotkit/shared@1.10.5-next.6
34
+
35
+ ## 1.10.5-next.5
36
+
37
+ ### Patch Changes
38
+
39
+ - @copilotkit/shared@1.10.5-next.5
40
+
41
+ ## 1.10.5-next.4
42
+
43
+ ### Patch Changes
44
+
45
+ - e730369: - feat: use latest agui langgraph package
46
+ - feat: use latest agui fastapi langgraph package and dependencies
47
+ - @copilotkit/shared@1.10.5-next.4
48
+
49
+ ## 1.10.5-next.3
50
+
51
+ ### Patch Changes
52
+
53
+ - 23fe6a1: - chore: publish python sdk using latest agui
54
+ - feat: use latest agui packages
55
+ - @copilotkit/shared@1.10.5-next.3
56
+
57
+ ## 1.10.5-next.2
58
+
59
+ ### Patch Changes
60
+
61
+ - 7467f97: - feat: add stop generation callback and call abort agui agent
62
+ - @copilotkit/shared@1.10.5-next.2
63
+
64
+ ## 1.10.5-next.1
65
+
66
+ ### Patch Changes
67
+
68
+ - b7bc3a0: - feat: pass copilot readable context to agui agents
69
+ - @copilotkit/shared@1.10.5-next.1
70
+
3
71
  ## 1.10.5-next.0
4
72
 
5
73
  ### Patch Changes
@@ -100,6 +100,11 @@ input CloudInput {
100
100
  guardrails: GuardrailsInput
101
101
  }
102
102
 
103
+ input CopilotContextInput {
104
+ description: String!
105
+ value: String!
106
+ }
107
+
103
108
  type CopilotKitLangGraphInterruptEvent implements BaseMetaEvent {
104
109
  data: CopilotKitLangGraphInterruptEventData!
105
110
  name: MetaEventName!
@@ -180,6 +185,7 @@ input GenerateCopilotResponseInput {
180
185
  agentState: AgentStateInput
181
186
  agentStates: [AgentStateInput!]
182
187
  cloud: CloudInput
188
+ context: [CopilotContextInput!]
183
189
  extensions: ExtensionsInput
184
190
  forwardedParameters: ForwardedParametersInput
185
191
  frontend: FrontendInput!
@@ -2,7 +2,7 @@ import {
2
2
  copilotRuntimeNodeHttpEndpoint,
3
3
  getRuntimeInstanceTelemetryInfo,
4
4
  telemetry_client_default
5
- } from "./chunk-HZWVUP7K.mjs";
5
+ } from "./chunk-NFB4H6NT.mjs";
6
6
  import {
7
7
  __name
8
8
  } from "./chunk-FHD4JECV.mjs";
@@ -22,4 +22,4 @@ __name(copilotRuntimeNodeExpressEndpoint, "copilotRuntimeNodeExpressEndpoint");
22
22
  export {
23
23
  copilotRuntimeNodeExpressEndpoint
24
24
  };
25
- //# sourceMappingURL=chunk-2JRX6LGW.mjs.map
25
+ //# sourceMappingURL=chunk-COGFQ4V4.mjs.map
@@ -2,7 +2,7 @@ import {
2
2
  copilotRuntimeNodeHttpEndpoint,
3
3
  getRuntimeInstanceTelemetryInfo,
4
4
  telemetry_client_default
5
- } from "./chunk-HZWVUP7K.mjs";
5
+ } from "./chunk-NFB4H6NT.mjs";
6
6
  import {
7
7
  __name
8
8
  } from "./chunk-FHD4JECV.mjs";
@@ -22,4 +22,4 @@ __name(copilotRuntimeNestEndpoint, "copilotRuntimeNestEndpoint");
22
22
  export {
23
23
  copilotRuntimeNestEndpoint
24
24
  };
25
- //# sourceMappingURL=chunk-WGOBL6DV.mjs.map
25
+ //# sourceMappingURL=chunk-M65Z27MR.mjs.map