@copilotkit/runtime 1.57.3 → 1.58.0-canary.thread-id-propagation

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 (346) hide show
  1. package/dist/lib/observability.d.cts +1 -1
  2. package/dist/lib/observability.d.cts.map +1 -1
  3. package/dist/lib/observability.d.mts +1 -1
  4. package/dist/lib/observability.d.mts.map +1 -1
  5. package/dist/lib/runtime/copilot-runtime.cjs +2 -0
  6. package/dist/lib/runtime/copilot-runtime.cjs.map +1 -1
  7. package/dist/lib/runtime/copilot-runtime.d.cts.map +1 -1
  8. package/dist/lib/runtime/copilot-runtime.d.mts.map +1 -1
  9. package/dist/lib/runtime/copilot-runtime.mjs +2 -0
  10. package/dist/lib/runtime/copilot-runtime.mjs.map +1 -1
  11. package/dist/package.cjs +5 -8
  12. package/dist/package.mjs +5 -8
  13. package/dist/v2/runtime/core/runtime.cjs +4 -1
  14. package/dist/v2/runtime/core/runtime.cjs.map +1 -1
  15. package/dist/v2/runtime/core/runtime.d.cts.map +1 -1
  16. package/dist/v2/runtime/core/runtime.d.mts.map +1 -1
  17. package/dist/v2/runtime/core/runtime.mjs +4 -1
  18. package/dist/v2/runtime/core/runtime.mjs.map +1 -1
  19. package/dist/v2/runtime/handlers/get-runtime-info.cjs +1 -1
  20. package/dist/v2/runtime/handlers/get-runtime-info.mjs +1 -1
  21. package/dist/v2/runtime/handlers/handle-connect.cjs +1 -1
  22. package/dist/v2/runtime/handlers/handle-connect.mjs +1 -1
  23. package/dist/v2/runtime/handlers/handle-run.cjs +1 -1
  24. package/dist/v2/runtime/handlers/handle-run.mjs +1 -1
  25. package/dist/v2/runtime/handlers/shared/agent-utils.cjs +1 -1
  26. package/dist/v2/runtime/handlers/shared/agent-utils.cjs.map +1 -1
  27. package/dist/v2/runtime/handlers/shared/agent-utils.mjs +1 -1
  28. package/dist/v2/runtime/handlers/shared/agent-utils.mjs.map +1 -1
  29. package/dist/v2/runtime/telemetry/telemetry-client.cjs +22 -6
  30. package/dist/v2/runtime/telemetry/telemetry-client.cjs.map +1 -1
  31. package/dist/v2/runtime/telemetry/telemetry-client.mjs +27 -11
  32. package/dist/v2/runtime/telemetry/telemetry-client.mjs.map +1 -1
  33. package/package.json +9 -19
  34. package/skills/runtime/SKILL.md +98 -0
  35. package/skills/runtime/references/agent-runners-custom.md +161 -0
  36. package/skills/runtime/references/agent-runners-in-memory.md +64 -0
  37. package/skills/runtime/references/agent-runners-sqlite.md +90 -0
  38. package/skills/runtime/references/agent-runners.md +304 -0
  39. package/skills/runtime/references/built-in-agent-factory-modes.md +232 -0
  40. package/skills/runtime/references/built-in-agent-helper-utilities.md +123 -0
  41. package/skills/runtime/references/built-in-agent-model-identifiers.md +59 -0
  42. package/skills/runtime/references/built-in-agent.md +523 -0
  43. package/skills/runtime/references/intelligence-mode.md +336 -0
  44. package/skills/runtime/references/middleware.md +376 -0
  45. package/skills/runtime/references/server-side-tools.md +414 -0
  46. package/skills/runtime/references/setup-endpoint.md +503 -0
  47. package/skills/runtime/references/transcription.md +287 -0
  48. package/skills/runtime/references/wiring-a2a.md +40 -0
  49. package/skills/runtime/references/wiring-adk.md +45 -0
  50. package/skills/runtime/references/wiring-ag2.md +41 -0
  51. package/skills/runtime/references/wiring-agno.md +39 -0
  52. package/skills/runtime/references/wiring-aws-strands.md +59 -0
  53. package/skills/runtime/references/wiring-crewai-crews.md +51 -0
  54. package/skills/runtime/references/wiring-crewai-flows.md +45 -0
  55. package/skills/runtime/references/wiring-external-agents.md +348 -0
  56. package/skills/runtime/references/wiring-langgraph.md +50 -0
  57. package/skills/runtime/references/wiring-llamaindex.md +39 -0
  58. package/skills/runtime/references/wiring-mastra.md +70 -0
  59. package/skills/runtime/references/wiring-mcp-apps-middleware.md +68 -0
  60. package/skills/runtime/references/wiring-ms-agent-framework.md +41 -0
  61. package/skills/runtime/references/wiring-pydantic-ai.md +45 -0
  62. package/CHANGELOG.md +0 -3624
  63. package/__snapshots__/schema/schema.graphql +0 -371
  64. package/dist/v2/runtime/telemetry/scarf-client.cjs +0 -32
  65. package/dist/v2/runtime/telemetry/scarf-client.cjs.map +0 -1
  66. package/dist/v2/runtime/telemetry/scarf-client.mjs +0 -32
  67. package/dist/v2/runtime/telemetry/scarf-client.mjs.map +0 -1
  68. package/scripts/generate-gql-schema.ts +0 -16
  69. package/src/agent/__tests__/agent-test-helpers.ts +0 -476
  70. package/src/agent/__tests__/agent.test.ts +0 -593
  71. package/src/agent/__tests__/ai-sdk-v6-compat.test.ts +0 -116
  72. package/src/agent/__tests__/basic-agent.test.ts +0 -1698
  73. package/src/agent/__tests__/capabilities.test.ts +0 -81
  74. package/src/agent/__tests__/config-tools-execution.test.ts +0 -516
  75. package/src/agent/__tests__/converter-aisdk.test.ts +0 -692
  76. package/src/agent/__tests__/converter-custom.test.ts +0 -319
  77. package/src/agent/__tests__/converter-tanstack-input.test.ts +0 -211
  78. package/src/agent/__tests__/converter-tanstack.test.ts +0 -594
  79. package/src/agent/__tests__/mcp-clients.test.ts +0 -246
  80. package/src/agent/__tests__/mcp-servers-integration.test.ts +0 -373
  81. package/src/agent/__tests__/multimodal-tanstack.test.ts +0 -284
  82. package/src/agent/__tests__/multimodal.test.ts +0 -176
  83. package/src/agent/__tests__/property-overrides.test.ts +0 -598
  84. package/src/agent/__tests__/provider-id-collision.test.ts +0 -195
  85. package/src/agent/__tests__/standard-schema-tools.test.ts +0 -313
  86. package/src/agent/__tests__/standard-schema-types.test.ts +0 -158
  87. package/src/agent/__tests__/state-tools.test.ts +0 -436
  88. package/src/agent/__tests__/test-helpers.ts +0 -197
  89. package/src/agent/__tests__/utils.test.ts +0 -536
  90. package/src/agent/__tests__/zod-regression.test.ts +0 -350
  91. package/src/agent/converters/aisdk.ts +0 -326
  92. package/src/agent/converters/index.ts +0 -7
  93. package/src/agent/converters/tanstack.ts +0 -451
  94. package/src/agent/index.ts +0 -1743
  95. package/src/agents/langgraph/__tests__/event-source.test.ts +0 -256
  96. package/src/agents/langgraph/event-source.ts +0 -365
  97. package/src/agents/langgraph/events.ts +0 -394
  98. package/src/graphql/inputs/action.input.ts +0 -16
  99. package/src/graphql/inputs/agent-session.input.ts +0 -13
  100. package/src/graphql/inputs/agent-state.input.ts +0 -13
  101. package/src/graphql/inputs/cloud-guardrails.input.ts +0 -16
  102. package/src/graphql/inputs/cloud.input.ts +0 -8
  103. package/src/graphql/inputs/context-property.input.ts +0 -10
  104. package/src/graphql/inputs/copilot-context.input.ts +0 -10
  105. package/src/graphql/inputs/custom-property.input.ts +0 -15
  106. package/src/graphql/inputs/extensions.input.ts +0 -21
  107. package/src/graphql/inputs/forwarded-parameters.input.ts +0 -22
  108. package/src/graphql/inputs/frontend.input.ts +0 -14
  109. package/src/graphql/inputs/generate-copilot-response.input.ts +0 -59
  110. package/src/graphql/inputs/load-agent-state.input.ts +0 -10
  111. package/src/graphql/inputs/message.input.ts +0 -110
  112. package/src/graphql/inputs/meta-event.input.ts +0 -18
  113. package/src/graphql/message-conversion/agui-to-gql.test.ts +0 -1384
  114. package/src/graphql/message-conversion/agui-to-gql.ts +0 -384
  115. package/src/graphql/message-conversion/gql-to-agui.test.ts +0 -1653
  116. package/src/graphql/message-conversion/gql-to-agui.ts +0 -297
  117. package/src/graphql/message-conversion/index.ts +0 -2
  118. package/src/graphql/message-conversion/roundtrip-conversion.test.ts +0 -561
  119. package/src/graphql/resolvers/__tests__/resolve-message-id.test.ts +0 -25
  120. package/src/graphql/resolvers/copilot.resolver.ts +0 -785
  121. package/src/graphql/resolvers/resolve-message-id.ts +0 -14
  122. package/src/graphql/resolvers/state.resolver.ts +0 -30
  123. package/src/graphql/types/agents-response.type.ts +0 -19
  124. package/src/graphql/types/base/index.ts +0 -10
  125. package/src/graphql/types/converted/index.ts +0 -183
  126. package/src/graphql/types/copilot-response.type.ts +0 -141
  127. package/src/graphql/types/enums.ts +0 -38
  128. package/src/graphql/types/extensions-response.type.ts +0 -23
  129. package/src/graphql/types/guardrails-result.type.ts +0 -20
  130. package/src/graphql/types/load-agent-state-response.type.ts +0 -17
  131. package/src/graphql/types/message-status.type.ts +0 -48
  132. package/src/graphql/types/meta-events.type.ts +0 -78
  133. package/src/graphql/types/response-status.type.ts +0 -77
  134. package/src/index.ts +0 -3
  135. package/src/langgraph.ts +0 -1
  136. package/src/lib/__tests__/telemetry-disclosure.test.ts +0 -55
  137. package/src/lib/cloud/index.ts +0 -4
  138. package/src/lib/error-messages.ts +0 -211
  139. package/src/lib/index.ts +0 -52
  140. package/src/lib/integrations/index.ts +0 -6
  141. package/src/lib/integrations/nest/index.ts +0 -21
  142. package/src/lib/integrations/nextjs/app-router.ts +0 -47
  143. package/src/lib/integrations/nextjs/pages-router.ts +0 -45
  144. package/src/lib/integrations/node-express/index.ts +0 -21
  145. package/src/lib/integrations/node-http/__tests__/request-duck-type.test.ts +0 -66
  146. package/src/lib/integrations/node-http/index.ts +0 -187
  147. package/src/lib/integrations/node-http/request-handler.ts +0 -128
  148. package/src/lib/integrations/shared.ts +0 -112
  149. package/src/lib/logger.ts +0 -31
  150. package/src/lib/observability.ts +0 -167
  151. package/src/lib/runtime/__tests__/copilot-runtime-error.test.ts +0 -183
  152. package/src/lib/runtime/__tests__/handle-service-adapter.test.ts +0 -108
  153. package/src/lib/runtime/__tests__/mcp-tools-utils.test.ts +0 -499
  154. package/src/lib/runtime/__tests__/on-after-request.test.ts +0 -122
  155. package/src/lib/runtime/__tests__/retry-utils.test.ts +0 -137
  156. package/src/lib/runtime/__tests__/v1-agent-factory.test.ts +0 -109
  157. package/src/lib/runtime/agent-integrations/langgraph/__tests__/dispatch-event-filtering.test.ts +0 -345
  158. package/src/lib/runtime/agent-integrations/langgraph/__tests__/run-message-filtering.test.ts +0 -156
  159. package/src/lib/runtime/agent-integrations/langgraph/agent.ts +0 -263
  160. package/src/lib/runtime/agent-integrations/langgraph/consts.ts +0 -37
  161. package/src/lib/runtime/agent-integrations/langgraph/index.ts +0 -2
  162. package/src/lib/runtime/copilot-runtime.ts +0 -863
  163. package/src/lib/runtime/mcp-tools-utils.ts +0 -313
  164. package/src/lib/runtime/retry-utils.ts +0 -141
  165. package/src/lib/runtime/telemetry-agent-runner.ts +0 -151
  166. package/src/lib/runtime/types.ts +0 -48
  167. package/src/lib/runtime/utils.ts +0 -93
  168. package/src/lib/streaming.ts +0 -220
  169. package/src/lib/telemetry-client.ts +0 -66
  170. package/src/lib/telemetry-disclosure.ts +0 -53
  171. package/src/service-adapters/anthropic/anthropic-adapter.ts +0 -532
  172. package/src/service-adapters/anthropic/utils.ts +0 -219
  173. package/src/service-adapters/bedrock/bedrock-adapter.ts +0 -73
  174. package/src/service-adapters/conversion.test.ts +0 -56
  175. package/src/service-adapters/conversion.ts +0 -69
  176. package/src/service-adapters/empty/empty-adapter.ts +0 -38
  177. package/src/service-adapters/events.ts +0 -337
  178. package/src/service-adapters/experimental/ollama/ollama-adapter.ts +0 -84
  179. package/src/service-adapters/google/google-genai-adapter.test.ts +0 -151
  180. package/src/service-adapters/google/google-genai-adapter.ts +0 -95
  181. package/src/service-adapters/groq/groq-adapter.ts +0 -229
  182. package/src/service-adapters/index.ts +0 -18
  183. package/src/service-adapters/langchain/langchain-adapter.ts +0 -113
  184. package/src/service-adapters/langchain/langserve.ts +0 -88
  185. package/src/service-adapters/langchain/types.ts +0 -20
  186. package/src/service-adapters/langchain/utils.ts +0 -330
  187. package/src/service-adapters/openai/__tests__/openai-v5-compat.test.ts +0 -177
  188. package/src/service-adapters/openai/openai-adapter.ts +0 -324
  189. package/src/service-adapters/openai/openai-assistant-adapter.ts +0 -385
  190. package/src/service-adapters/openai/utils.ts +0 -305
  191. package/src/service-adapters/service-adapter.ts +0 -50
  192. package/src/service-adapters/shared/error-utils.ts +0 -64
  193. package/src/service-adapters/shared/index.ts +0 -2
  194. package/src/service-adapters/shared/sdk-client-utils.ts +0 -19
  195. package/src/service-adapters/unify/unify-adapter.ts +0 -165
  196. package/src/utils/failed-response-status-reasons.ts +0 -70
  197. package/src/utils/index.ts +0 -1
  198. package/src/v2/express.ts +0 -1
  199. package/src/v2/hono.ts +0 -1
  200. package/src/v2/index.ts +0 -5
  201. package/src/v2/node.ts +0 -1
  202. package/src/v2/runtime/__tests__/agents-factory.test.ts +0 -136
  203. package/src/v2/runtime/__tests__/backward-compat.test.ts +0 -261
  204. package/src/v2/runtime/__tests__/code-review-fixes.test.ts +0 -500
  205. package/src/v2/runtime/__tests__/cors-credentials.test.ts +0 -320
  206. package/src/v2/runtime/__tests__/debug-sse-response.test.ts +0 -302
  207. package/src/v2/runtime/__tests__/express-adapter.test.ts +0 -188
  208. package/src/v2/runtime/__tests__/express-body-order.test.ts +0 -76
  209. package/src/v2/runtime/__tests__/express-fetch-bridge.test.ts +0 -344
  210. package/src/v2/runtime/__tests__/express-single-sse.test.ts +0 -122
  211. package/src/v2/runtime/__tests__/express-single-telemetry.integration.test.ts +0 -65
  212. package/src/v2/runtime/__tests__/express-telemetry.integration.test.ts +0 -101
  213. package/src/v2/runtime/__tests__/fetch-cors.test.ts +0 -205
  214. package/src/v2/runtime/__tests__/fetch-handler-validation.test.ts +0 -440
  215. package/src/v2/runtime/__tests__/fetch-handler.test.ts +0 -456
  216. package/src/v2/runtime/__tests__/fetch-router.test.ts +0 -276
  217. package/src/v2/runtime/__tests__/get-runtime-info.test.ts +0 -335
  218. package/src/v2/runtime/__tests__/handle-connect.test.ts +0 -585
  219. package/src/v2/runtime/__tests__/handle-run.test.ts +0 -1388
  220. package/src/v2/runtime/__tests__/handle-threads.test.ts +0 -930
  221. package/src/v2/runtime/__tests__/handle-transcribe.test.ts +0 -301
  222. package/src/v2/runtime/__tests__/header-utils.test.ts +0 -88
  223. package/src/v2/runtime/__tests__/hono-adapter.test.ts +0 -150
  224. package/src/v2/runtime/__tests__/hono-single-telemetry.integration.test.ts +0 -46
  225. package/src/v2/runtime/__tests__/hono-telemetry.integration.test.ts +0 -99
  226. package/src/v2/runtime/__tests__/hooks-edge-cases.test.ts +0 -457
  227. package/src/v2/runtime/__tests__/hooks.test.ts +0 -557
  228. package/src/v2/runtime/__tests__/in-process-agent-runner-messages.test.ts +0 -230
  229. package/src/v2/runtime/__tests__/in-process-agent-runner.test.ts +0 -1030
  230. package/src/v2/runtime/__tests__/integration/bun/bun-servers.integration.test.ts +0 -27
  231. package/src/v2/runtime/__tests__/integration/bun/elysia-multi.ts +0 -32
  232. package/src/v2/runtime/__tests__/integration/bun/elysia-single.ts +0 -33
  233. package/src/v2/runtime/__tests__/integration/bun/hono-bun-multi.ts +0 -25
  234. package/src/v2/runtime/__tests__/integration/bun/hono-bun-single.ts +0 -32
  235. package/src/v2/runtime/__tests__/integration/helpers/create-test-runtime.ts +0 -15
  236. package/src/v2/runtime/__tests__/integration/helpers/sse-reader.ts +0 -45
  237. package/src/v2/runtime/__tests__/integration/helpers/test-agent.ts +0 -58
  238. package/src/v2/runtime/__tests__/integration/node-servers.integration.test.ts +0 -58
  239. package/src/v2/runtime/__tests__/integration/servers/express-multi.ts +0 -35
  240. package/src/v2/runtime/__tests__/integration/servers/express-single.ts +0 -36
  241. package/src/v2/runtime/__tests__/integration/servers/fetch-direct.ts +0 -39
  242. package/src/v2/runtime/__tests__/integration/servers/hono-multi.ts +0 -30
  243. package/src/v2/runtime/__tests__/integration/servers/hono-single.ts +0 -37
  244. package/src/v2/runtime/__tests__/integration/servers/node-multi.ts +0 -45
  245. package/src/v2/runtime/__tests__/integration/servers/node-single.ts +0 -46
  246. package/src/v2/runtime/__tests__/integration/servers/types.ts +0 -18
  247. package/src/v2/runtime/__tests__/integration/suites/debug-events.suite.ts +0 -253
  248. package/src/v2/runtime/__tests__/integration/suites/multi-endpoint.suite.ts +0 -358
  249. package/src/v2/runtime/__tests__/integration/suites/single-endpoint.suite.ts +0 -363
  250. package/src/v2/runtime/__tests__/intelligence-run-telemetry.test.ts +0 -194
  251. package/src/v2/runtime/__tests__/mcp-apps-middleware-integration.test.ts +0 -275
  252. package/src/v2/runtime/__tests__/middleware-express.test.ts +0 -208
  253. package/src/v2/runtime/__tests__/middleware-single-express.test.ts +0 -213
  254. package/src/v2/runtime/__tests__/middleware-single.test.ts +0 -225
  255. package/src/v2/runtime/__tests__/middleware-sse-parser.test.ts +0 -237
  256. package/src/v2/runtime/__tests__/middleware.test.ts +0 -250
  257. package/src/v2/runtime/__tests__/node-fetch-handler.test.ts +0 -157
  258. package/src/v2/runtime/__tests__/open-generative-ui-middleware.e2e.test.ts +0 -728
  259. package/src/v2/runtime/__tests__/router-edge-cases.test.ts +0 -217
  260. package/src/v2/runtime/__tests__/routing-express.test.ts +0 -174
  261. package/src/v2/runtime/__tests__/routing-single-express.test.ts +0 -168
  262. package/src/v2/runtime/__tests__/routing-single.test.ts +0 -193
  263. package/src/v2/runtime/__tests__/routing.test.ts +0 -257
  264. package/src/v2/runtime/__tests__/runtime.test.ts +0 -234
  265. package/src/v2/runtime/__tests__/sse-response-telemetry.test.ts +0 -108
  266. package/src/v2/runtime/__tests__/telemetry.test.ts +0 -167
  267. package/src/v2/runtime/__tests__/thread-names.test.ts +0 -188
  268. package/src/v2/runtime/core/__tests__/debug-event-bus.test.ts +0 -156
  269. package/src/v2/runtime/core/debug-event-bus.ts +0 -45
  270. package/src/v2/runtime/core/fetch-cors.ts +0 -136
  271. package/src/v2/runtime/core/fetch-handler.ts +0 -492
  272. package/src/v2/runtime/core/fetch-router.ts +0 -203
  273. package/src/v2/runtime/core/hooks.ts +0 -160
  274. package/src/v2/runtime/core/middleware-sse-parser.ts +0 -210
  275. package/src/v2/runtime/core/middleware.ts +0 -115
  276. package/src/v2/runtime/core/runtime.ts +0 -432
  277. package/src/v2/runtime/endpoints/express-fetch-bridge.ts +0 -137
  278. package/src/v2/runtime/endpoints/express-single.ts +0 -54
  279. package/src/v2/runtime/endpoints/express.ts +0 -179
  280. package/src/v2/runtime/endpoints/hono-single.ts +0 -60
  281. package/src/v2/runtime/endpoints/hono.ts +0 -89
  282. package/src/v2/runtime/endpoints/index.ts +0 -4
  283. package/src/v2/runtime/endpoints/node-fetch-handler.ts +0 -48
  284. package/src/v2/runtime/endpoints/node.ts +0 -28
  285. package/src/v2/runtime/endpoints/single-route-helpers.ts +0 -125
  286. package/src/v2/runtime/express.ts +0 -2
  287. package/src/v2/runtime/handlers/__tests__/handle-debug-events.test.ts +0 -176
  288. package/src/v2/runtime/handlers/get-runtime-info.ts +0 -101
  289. package/src/v2/runtime/handlers/handle-connect.ts +0 -80
  290. package/src/v2/runtime/handlers/handle-debug-events.ts +0 -52
  291. package/src/v2/runtime/handlers/handle-run.ts +0 -111
  292. package/src/v2/runtime/handlers/handle-stop.ts +0 -77
  293. package/src/v2/runtime/handlers/handle-threads.ts +0 -11
  294. package/src/v2/runtime/handlers/handle-transcribe.ts +0 -269
  295. package/src/v2/runtime/handlers/header-utils.ts +0 -24
  296. package/src/v2/runtime/handlers/intelligence/connect.ts +0 -102
  297. package/src/v2/runtime/handlers/intelligence/run.ts +0 -351
  298. package/src/v2/runtime/handlers/intelligence/thread-names.ts +0 -246
  299. package/src/v2/runtime/handlers/intelligence/threads.ts +0 -420
  300. package/src/v2/runtime/handlers/shared/agent-utils.ts +0 -154
  301. package/src/v2/runtime/handlers/shared/intelligence-utils.ts +0 -41
  302. package/src/v2/runtime/handlers/shared/json-response.ts +0 -9
  303. package/src/v2/runtime/handlers/shared/resolve-intelligence-user.ts +0 -28
  304. package/src/v2/runtime/handlers/shared/sse-response.ts +0 -215
  305. package/src/v2/runtime/handlers/sse/__tests__/sse-connect-agent-id.test.ts +0 -71
  306. package/src/v2/runtime/handlers/sse/connect.ts +0 -30
  307. package/src/v2/runtime/handlers/sse/run.ts +0 -40
  308. package/src/v2/runtime/hono.ts +0 -2
  309. package/src/v2/runtime/index.ts +0 -51
  310. package/src/v2/runtime/intelligence-platform/__tests__/client.test.ts +0 -601
  311. package/src/v2/runtime/intelligence-platform/__tests__/intelligence-mcp-helper.test.ts +0 -246
  312. package/src/v2/runtime/intelligence-platform/client.ts +0 -818
  313. package/src/v2/runtime/intelligence-platform/index.ts +0 -10
  314. package/src/v2/runtime/node.ts +0 -6
  315. package/src/v2/runtime/open-generative-ui-middleware.ts +0 -373
  316. package/src/v2/runtime/runner/__tests__/finalize-events.test.ts +0 -109
  317. package/src/v2/runtime/runner/__tests__/in-memory-runner.e2e.test.ts +0 -775
  318. package/src/v2/runtime/runner/__tests__/in-memory-runner.test.ts +0 -777
  319. package/src/v2/runtime/runner/__tests__/intelligence-runner.test.ts +0 -1039
  320. package/src/v2/runtime/runner/agent-runner.ts +0 -35
  321. package/src/v2/runtime/runner/in-memory.ts +0 -467
  322. package/src/v2/runtime/runner/index.ts +0 -4
  323. package/src/v2/runtime/runner/intelligence.ts +0 -498
  324. package/src/v2/runtime/telemetry/__tests__/instance-created.test.ts +0 -96
  325. package/src/v2/runtime/telemetry/events.ts +0 -35
  326. package/src/v2/runtime/telemetry/index.ts +0 -7
  327. package/src/v2/runtime/telemetry/instance-created.ts +0 -44
  328. package/src/v2/runtime/telemetry/scarf-client.ts +0 -39
  329. package/src/v2/runtime/telemetry/telemetry-client.ts +0 -70
  330. package/src/v2/runtime/transcription-service/transcription-service.ts +0 -11
  331. package/tests/global.d.ts +0 -1
  332. package/tests/service-adapters/anthropic/allowlist-approach.test.ts +0 -259
  333. package/tests/service-adapters/anthropic/anthropic-adapter-language-model.test.ts +0 -101
  334. package/tests/service-adapters/anthropic/anthropic-adapter.test.ts +0 -645
  335. package/tests/service-adapters/anthropic/utils-token-trimming.test.ts +0 -301
  336. package/tests/service-adapters/groq/groq-adapter-language-model.test.ts +0 -102
  337. package/tests/service-adapters/openai/allowlist-approach.test.ts +0 -294
  338. package/tests/service-adapters/openai/openai-adapter-language-model.test.ts +0 -122
  339. package/tests/service-adapters/openai/openai-adapter.test.ts +0 -291
  340. package/tests/service-adapters/shared/sdk-client-utils.test.ts +0 -36
  341. package/tests/setup.vitest.ts +0 -8
  342. package/tests/tsconfig.json +0 -10
  343. package/tsconfig.json +0 -20
  344. package/tsdown.config.ts +0 -45
  345. package/typedoc.json +0 -4
  346. package/vitest.config.mjs +0 -13
package/CHANGELOG.md DELETED
@@ -1,3624 +0,0 @@
1
- # @copilotkit/runtime
2
-
3
- ## 1.55.2
4
-
5
- ### Patch Changes
6
-
7
- - 5f4ca65: feat(runtime): add factory mode to BuiltInAgent for backend-agnostic LLM integration
8
- - @copilotkit/shared@1.55.2
9
-
10
- ## 1.55.2-next.1
11
-
12
- ### Patch Changes
13
-
14
- - 5f4ca65: feat(runtime): add factory mode to BuiltInAgent for backend-agnostic LLM integration
15
- - @copilotkit/shared@1.55.2-next.1
16
-
17
- ## 1.55.2-next.0
18
-
19
- ### Patch Changes
20
-
21
- - @copilotkit/shared@1.55.2-next.0
22
-
23
- ## 1.55.1
24
-
25
- ### Patch Changes
26
-
27
- - e6e8ef8: Fix an incorrect import in open-generative-ui middleware
28
- - @copilotkit/shared@1.55.1
29
-
30
- ## 1.55.1-next.0
31
-
32
- ### Patch Changes
33
-
34
- - e6e8ef8: Fix an incorrect import in open-generative-ui middleware
35
- - @copilotkit/shared@1.55.1-next.0
36
-
37
- ## 1.55.0
38
-
39
- ### Minor Changes
40
-
41
- - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
42
- - 9a6ee39: Add support for fetch based handler and add consistency in function naming
43
- - 5289791: feat: add multimodal attachment support to the builtin agent
44
- - 434ccd8: A2UI v0.9 + Open Generative UI: BYOC catalogs, dark mode, sandboxed UI generation
45
-
46
- ### Patch Changes
47
-
48
- - 1ceb963: Add vertex AI
49
- - 8aafcbe: fix(agent): harden BuiltInAgent reasoning lifecycle
50
- - Skip empty reasoning deltas (violates @ag-ui/core schema)
51
- - Auto-close reasoning lifecycle when SDK omits reasoning-end (on consecutive-start, phase transitions, abort, error, and fallback paths)
52
- - Make reasoning-end idempotent to prevent duplicate close events when auto-close already fired
53
- - Regenerate reasoningMessageId for consecutive reasoning blocks when SDK provides no id
54
- - Close reasoning in outer catch block so exceptions mid-reasoning emit proper lifecycle events
55
-
56
- - 52a9322: Fixing license warnings, barrel export and typing
57
- - 1ceb963: feat: re export state streaming langgraph middleware
58
- - 1ceb963: custom mcpClients configuration
59
- - Updated dependencies [1ceb963]
60
- - Updated dependencies [52a9322]
61
- - Updated dependencies [5289791]
62
- - Updated dependencies [434ccd8]
63
- - @copilotkit/shared@1.55.0
64
-
65
- ## 1.55.0-next.8
66
-
67
- ### Patch Changes
68
-
69
- - 8aafcbe: fix(agent): harden BuiltInAgent reasoning lifecycle
70
- - Skip empty reasoning deltas (violates @ag-ui/core schema)
71
- - Auto-close reasoning lifecycle when SDK omits reasoning-end (on consecutive-start, phase transitions, abort, error, and fallback paths)
72
- - Make reasoning-end idempotent to prevent duplicate close events when auto-close already fired
73
- - Regenerate reasoningMessageId for consecutive reasoning blocks when SDK provides no id
74
- - Close reasoning in outer catch block so exceptions mid-reasoning emit proper lifecycle events
75
- - @copilotkit/shared@1.55.0-next.8
76
-
77
- ## 1.55.0-next.7
78
-
79
- ### Minor Changes
80
-
81
- - 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
82
-
83
- ### Patch Changes
84
-
85
- - Updated dependencies [1ceb963]
86
- - @copilotkit/shared@1.55.0-next.7
87
-
88
- ## 1.54.1-next.6
89
-
90
- ### Patch Changes
91
-
92
- - @copilotkit/shared@1.54.1-next.6
93
- - @copilotkitnext/agent@1.54.1-next.6
94
- - @copilotkitnext/runtime@1.54.1-next.6
95
-
96
- ## 1.54.1-next.5
97
-
98
- ### Patch Changes
99
-
100
- - c62c5c8: custom mcpClients configuration
101
- - @copilotkit/shared@1.54.1-next.5
102
- - @copilotkitnext/agent@1.54.1-next.5
103
- - @copilotkitnext/runtime@1.54.1-next.5
104
-
105
- ## 1.54.1-next.4
106
-
107
- ### Patch Changes
108
-
109
- - @copilotkit/shared@1.54.1-next.4
110
- - @copilotkitnext/agent@1.54.1-next.4
111
- - @copilotkitnext/runtime@1.54.1-next.4
112
-
113
- ## 1.54.1-next.3
114
-
115
- ### Patch Changes
116
-
117
- - @copilotkit/shared@1.54.1-next.3
118
- - @copilotkitnext/agent@1.54.1-next.3
119
- - @copilotkitnext/runtime@1.54.1-next.3
120
-
121
- ## 1.54.1-next.2
122
-
123
- ### Patch Changes
124
-
125
- - a0a1cf4: feat: re export state streaming langgraph middleware
126
- - @copilotkit/shared@1.54.1-next.2
127
- - @copilotkitnext/agent@1.54.1-next.2
128
- - @copilotkitnext/runtime@1.54.1-next.2
129
-
130
- ## 1.54.1-next.1
131
-
132
- ### Patch Changes
133
-
134
- - @copilotkit/shared@1.54.1-next.1
135
- - @copilotkitnext/agent@1.54.1-next.1
136
- - @copilotkitnext/runtime@1.54.1-next.1
137
-
138
- ## 1.54.1-next.0
139
-
140
- ### Patch Changes
141
-
142
- - Updated dependencies [da558d3]
143
- - @copilotkitnext/agent@1.54.1-next.0
144
- - @copilotkit/shared@1.54.1-next.0
145
- - @copilotkitnext/runtime@1.54.1-next.0
146
-
147
- ## 1.54.0
148
-
149
- ### Minor Changes
150
-
151
- - fa0d1cd: Add support for Standard Schema (instead of just Zod)
152
-
153
- ### Patch Changes
154
-
155
- - Updated dependencies [3780c6a]
156
- - Updated dependencies [fa0d1cd]
157
- - @copilotkitnext/agent@1.54.0
158
- - @copilotkitnext/runtime@1.54.0
159
- - @copilotkit/shared@1.54.0
160
-
161
- ## 1.54.0-next.9
162
-
163
- ### Patch Changes
164
-
165
- - Updated dependencies [3780c6a]
166
- - @copilotkitnext/agent@1.54.0-next.9
167
- - @copilotkitnext/runtime@1.54.0-next.9
168
- - @copilotkit/shared@1.54.0-next.9
169
-
170
- ## 1.54.0-next.8
171
-
172
- ### Patch Changes
173
-
174
- - @copilotkit/shared@1.54.0-next.8
175
- - @copilotkitnext/agent@1.54.0-next.8
176
- - @copilotkitnext/runtime@1.54.0-next.8
177
-
178
- ## 1.54.0-next.7
179
-
180
- ### Patch Changes
181
-
182
- - @copilotkit/shared@1.54.0-next.7
183
- - @copilotkitnext/agent@1.54.0-next.7
184
- - @copilotkitnext/runtime@1.54.0-next.7
185
-
186
- ## 1.54.0-next.6
187
-
188
- ### Patch Changes
189
-
190
- - @copilotkit/shared@1.54.0-next.6
191
- - @copilotkitnext/agent@1.54.0-next.6
192
- - @copilotkitnext/runtime@1.54.0-next.6
193
-
194
- ## 1.54.0-next.5
195
-
196
- ### Patch Changes
197
-
198
- - @copilotkit/shared@1.54.0-next.5
199
- - @copilotkitnext/agent@1.54.0-next.5
200
- - @copilotkitnext/runtime@1.54.0-next.5
201
-
202
- ## 1.54.0-next.4
203
-
204
- ### Patch Changes
205
-
206
- - @copilotkit/shared@1.54.0-next.4
207
- - @copilotkitnext/agent@1.54.0-next.4
208
- - @copilotkitnext/runtime@1.54.0-next.4
209
-
210
- ## 1.54.0-next.3
211
-
212
- ### Minor Changes
213
-
214
- - fa0d1cd: Add support for Standard Schema (instead of just Zod)
215
-
216
- ### Patch Changes
217
-
218
- - Updated dependencies [fa0d1cd]
219
- - @copilotkitnext/agent@1.54.0-next.3
220
- - @copilotkit/shared@1.54.0-next.3
221
- - @copilotkitnext/runtime@1.54.0-next.3
222
-
223
- ## 1.53.1-next.2
224
-
225
- ### Patch Changes
226
-
227
- - @copilotkit/shared@1.53.1-next.2
228
- - @copilotkit/agent@1.53.1-next.2
229
- - @copilotkit/runtime@1.53.1-next.2
230
-
231
- ## 1.53.1-next.1
232
-
233
- ### Patch Changes
234
-
235
- - @copilotkit/shared@1.53.1-next.1
236
- - @copilotkit/agent@1.53.1-next.1
237
- - @copilotkit/runtime@1.53.1-next.1
238
-
239
- ## 1.53.1-next.0
240
-
241
- ### Patch Changes
242
-
243
- - @copilotkit/shared@1.53.1-next.0
244
- - @copilotkit/agent@1.53.1-next.0
245
- - @copilotkit/runtime@1.53.1-next.0
246
-
247
- ## 1.53.0
248
-
249
- ### Minor Changes
250
-
251
- - f822c05: Updating the path and devex for mcp apps
252
-
253
- ### Patch Changes
254
-
255
- - d1f7aba: feat(runtime): expose messages in afterRequestMiddleware
256
- - 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
257
- - 8e0f94f: Bump AI SDK from v5 to v6
258
- - 501e8d7: surpress sse warning in middleware callback
259
- - Updated dependencies [1510f64]
260
- - Updated dependencies [bf1fc6f]
261
- - @copilotkit/shared@1.53.0
262
- - @copilotkit/agent@1.53.0
263
- - @copilotkit/runtime@1.53.0
264
-
265
- ## 1.53.0-next.6
266
-
267
- ### Patch Changes
268
-
269
- - 501e8d7: surpress sse warning in middleware callback
270
- - @copilotkit/shared@1.53.0-next.6
271
- - @copilotkit/agent@1.53.0-next.6
272
- - @copilotkit/runtime@1.53.0-next.6
273
-
274
- ## 1.53.0-next.5
275
-
276
- ### Minor Changes
277
-
278
- - f822c05: Updating the path and devex for mcp apps
279
-
280
- ### Patch Changes
281
-
282
- - @copilotkit/shared@1.53.0-next.5
283
- - @copilotkit/agent@1.53.0-next.5
284
- - @copilotkit/runtime@1.53.0-next.5
285
-
286
- ## 1.52.2-next.4
287
-
288
- ### Patch Changes
289
-
290
- - @copilotkit/shared@1.52.2-next.4
291
- - @copilotkit/agent@1.52.2-next.4
292
- - @copilotkit/runtime@1.52.2-next.4
293
-
294
- ## 1.52.2-next.3
295
-
296
- ### Patch Changes
297
-
298
- - 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
299
- - Updated dependencies [1510f64]
300
- - @copilotkit/shared@1.52.2-next.3
301
- - @copilotkit/agent@1.52.2-next.3
302
- - @copilotkit/runtime@1.52.2-next.3
303
-
304
- ## 1.52.2-next.2
305
-
306
- ### Patch Changes
307
-
308
- - 8e0f94f: Bump AI SDK from v5 to v6
309
- - @copilotkit/shared@1.52.2-next.2
310
- - @copilotkit/agent@1.52.2-next.2
311
- - @copilotkit/runtime@1.52.2-next.2
312
-
313
- ## 1.52.2-next.1
314
-
315
- ### Patch Changes
316
-
317
- - d1f7aba: feat(runtime): expose messages in afterRequestMiddleware
318
- - Updated dependencies [bf1fc6f]
319
- - @copilotkit/shared@1.52.2-next.1
320
- - @copilotkit/agent@1.52.2-next.1
321
- - @copilotkit/runtime@1.52.2-next.1
322
-
323
- ## 1.52.2-next.0
324
-
325
- ### Patch Changes
326
-
327
- - @copilotkit/shared@1.52.2-next.0
328
- - @copilotkit/agent@1.52.2-next.0
329
- - @copilotkit/runtime@1.52.2-next.0
330
-
331
- ## 1.52.1
332
-
333
- ### Patch Changes
334
-
335
- - @copilotkit/shared@1.52.1
336
- - @copilotkit/agent@1.52.1
337
- - @copilotkit/runtime@1.52.1
338
-
339
- ## 1.52.1-next.1
340
-
341
- ### Patch Changes
342
-
343
- - @copilotkit/shared@1.52.1-next.1
344
- - @copilotkit/agent@1.52.1-next.1
345
- - @copilotkit/runtime@1.52.1-next.1
346
-
347
- ## 1.52.1-next.0
348
-
349
- ### Patch Changes
350
-
351
- - @copilotkit/shared@1.52.1-next.0
352
- - @copilotkit/agent@1.52.1-next.0
353
- - @copilotkit/runtime@1.52.1-next.0
354
-
355
- ## 1.52.0
356
-
357
- ### Minor Changes
358
-
359
- - 6dd6c84: Adding new v2 features:
360
- - useComponent
361
- - useRenderTool
362
- - useDefaultRenderTool
363
-
364
- Also, fixing issues with styles not being
365
- properly scoped for tailwind.
366
-
367
- ### Patch Changes
368
-
369
- - ef0f539: Add reasoning support and default components for reasoning messages
370
- - Updated dependencies [ef0f539]
371
- - @copilotkit/runtime@1.52.0
372
- - @copilotkit/shared@1.52.0
373
- - @copilotkit/agent@1.52.0
374
-
375
- ## 1.52.0-next.8
376
-
377
- ### Patch Changes
378
-
379
- - @copilotkit/shared@1.52.0-next.8
380
- - @copilotkit/agent@1.52.0-next.8
381
- - @copilotkit/runtime@1.52.0-next.8
382
-
383
- ## 1.52.0-next.7
384
-
385
- ### Patch Changes
386
-
387
- - @copilotkit/shared@1.52.0-next.7
388
- - @copilotkit/agent@1.52.0-next.7
389
- - @copilotkit/runtime@1.52.0-next.7
390
-
391
- ## 1.52.0-next.6
392
-
393
- ### Patch Changes
394
-
395
- - @copilotkit/shared@1.52.0-next.6
396
- - @copilotkit/agent@1.52.0-next.6
397
- - @copilotkit/runtime@1.52.0-next.6
398
-
399
- ## 1.52.0-next.5
400
-
401
- ### Minor Changes
402
-
403
- - 6dd6c84: Adding new v2 features:
404
- - useComponent
405
- - useRenderTool
406
- - useDefaultRenderTool
407
-
408
- Also, fixing issues with styles not being
409
- properly scoped for tailwind.
410
-
411
- ### Patch Changes
412
-
413
- - @copilotkit/shared@1.52.0-next.5
414
- - @copilotkit/agent@1.52.0-next.5
415
- - @copilotkit/runtime@1.52.0-next.5
416
-
417
- ## 1.51.5-next.4
418
-
419
- ### Patch Changes
420
-
421
- - @copilotkit/shared@1.51.5-next.4
422
- - @copilotkit/agent@1.51.5-next.4
423
- - @copilotkit/runtime@1.51.5-next.4
424
-
425
- ## 1.51.5-next.3
426
-
427
- ### Patch Changes
428
-
429
- - @copilotkit/shared@1.51.5-next.3
430
- - @copilotkit/agent@1.51.5-next.3
431
- - @copilotkit/runtime@1.51.5-next.3
432
-
433
- ## 1.51.5-next.2
434
-
435
- ### Patch Changes
436
-
437
- - @copilotkit/shared@1.51.5-next.2
438
- - @copilotkit/agent@1.51.5-next.2
439
- - @copilotkit/runtime@1.51.5-next.2
440
-
441
- ## 1.51.5-next.1
442
-
443
- ### Patch Changes
444
-
445
- - @copilotkit/shared@1.51.5-next.1
446
- - @copilotkit/agent@1.51.5-next.1
447
- - @copilotkit/runtime@1.51.5-next.1
448
-
449
- ## 1.51.5-next.0
450
-
451
- ### Patch Changes
452
-
453
- - ef0f539: Add reasoning support and default components for reasoning messages
454
- - Updated dependencies [ef0f539]
455
- - @copilotkit/runtime@1.51.5-next.0
456
- - @copilotkit/shared@1.51.5-next.0
457
- - @copilotkit/agent@1.51.5-next.0
458
-
459
- ## 1.51.4
460
-
461
- ### Patch Changes
462
-
463
- - 8d67519: fix: propagate agent error messages into RUN_ERROR events
464
- - 4886f18: fix: use langgraph clone fix on latest agui
465
- - @copilotkit/shared@1.51.4
466
- - @copilotkit/agent@1.51.4
467
- - @copilotkit/runtime@1.51.4
468
-
469
- ## 1.51.4-next.8
470
-
471
- ### Patch Changes
472
-
473
- - @copilotkit/shared@1.51.4-next.8
474
- - @copilotkit/agent@1.51.4-next.8
475
- - @copilotkit/runtime@1.51.4-next.8
476
-
477
- ## 1.51.4-next.7
478
-
479
- ### Patch Changes
480
-
481
- - @copilotkit/shared@1.51.4-next.7
482
- - @copilotkit/agent@1.51.4-next.7
483
- - @copilotkit/runtime@1.51.4-next.7
484
-
485
- ## 1.51.4-next.6
486
-
487
- ### Patch Changes
488
-
489
- - @copilotkit/shared@1.51.4-next.6
490
- - @copilotkit/agent@1.51.4-next.6
491
- - @copilotkit/runtime@1.51.4-next.6
492
-
493
- ## 1.51.4-next.5
494
-
495
- ### Patch Changes
496
-
497
- - 8d67519: fix: propagate agent error messages into RUN_ERROR events
498
- - @copilotkit/shared@1.51.4-next.5
499
- - @copilotkit/agent@1.51.4-next.5
500
- - @copilotkit/runtime@1.51.4-next.5
501
-
502
- ## 1.51.4-next.4
503
-
504
- ### Patch Changes
505
-
506
- - @copilotkit/shared@1.51.4-next.4
507
- - @copilotkit/agent@1.51.4-next.4
508
- - @copilotkit/runtime@1.51.4-next.4
509
-
510
- ## 1.51.4-next.3
511
-
512
- ### Patch Changes
513
-
514
- - @copilotkit/shared@1.51.4-next.3
515
- - @copilotkit/agent@1.51.4-next.3
516
- - @copilotkit/runtime@1.51.4-next.3
517
-
518
- ## 1.51.4-next.2
519
-
520
- ### Patch Changes
521
-
522
- - @copilotkit/shared@1.51.4-next.2
523
- - @copilotkit/agent@1.51.4-next.2
524
- - @copilotkit/runtime@1.51.4-next.2
525
-
526
- ## 1.51.4-next.1
527
-
528
- ### Patch Changes
529
-
530
- - @copilotkit/shared@1.51.4-next.1
531
- - @copilotkit/agent@1.51.4-next.1
532
- - @copilotkit/runtime@1.51.4-next.1
533
-
534
- ## 1.51.4-next.0
535
-
536
- ### Patch Changes
537
-
538
- - 4886f18: fix: use langgraph clone fix on latest agui
539
- - @copilotkit/shared@1.51.4-next.0
540
- - @copilotkit/agent@1.51.4-next.0
541
- - @copilotkit/runtime@1.51.4-next.0
542
-
543
- ## 1.51.3
544
-
545
- ### Patch Changes
546
-
547
- - d655e75: fix: update ag-ui dependencies
548
- - d268c49: fix: add apiKey parameter to BuiltInAgentConfiguration
549
- - d36fc1e: Add UMD export
550
- - b49277b: fix: update all agui langgraph dependencies
551
- - 3a0822d: fix: do not run middleware for internal get requests
552
- - Updated dependencies [d655e75]
553
- - Updated dependencies [d268c49]
554
- - Updated dependencies [d36fc1e]
555
- - Updated dependencies [29d70a5]
556
- - @copilotkit/shared@1.51.3
557
- - @copilotkit/agent@1.51.3
558
- - @copilotkit/runtime@1.51.3
559
-
560
- ## 1.51.3-next.8
561
-
562
- ### Patch Changes
563
-
564
- - d36fc1e: Add UMD export
565
- - Updated dependencies [d36fc1e]
566
- - @copilotkit/runtime@1.51.3-next.8
567
- - @copilotkit/shared@1.51.3-next.8
568
- - @copilotkit/agent@1.51.3-next.8
569
-
570
- ## 1.51.3-next.7
571
-
572
- ### Patch Changes
573
-
574
- - @copilotkit/shared@1.51.3-next.7
575
- - @copilotkit/agent@1.51.3-next.7
576
- - @copilotkit/runtime@1.51.3-next.7
577
-
578
- ## 1.51.3-next.6
579
-
580
- ### Patch Changes
581
-
582
- - 3a0822d: fix: do not run middleware for internal get requests
583
- - @copilotkit/shared@1.51.3-next.6
584
- - @copilotkit/agent@1.51.3-next.6
585
- - @copilotkit/runtime@1.51.3-next.6
586
-
587
- ## 1.51.3-next.5
588
-
589
- ### Patch Changes
590
-
591
- - @copilotkit/shared@1.51.3-next.5
592
- - @copilotkit/agent@1.51.3-next.5
593
- - @copilotkit/runtime@1.51.3-next.5
594
-
595
- ## 1.51.3-next.4
596
-
597
- ### Patch Changes
598
-
599
- - b49277b: fix: update all agui langgraph dependencies
600
- - @copilotkit/shared@1.51.3-next.4
601
- - @copilotkit/agent@1.51.3-next.4
602
- - @copilotkit/runtime@1.51.3-next.4
603
-
604
- ## 1.51.3-next.3
605
-
606
- ### Patch Changes
607
-
608
- - d655e75: fix: update ag-ui dependencies
609
- - Updated dependencies [d655e75]
610
- - @copilotkit/shared@1.51.3-next.3
611
- - @copilotkit/agent@1.51.3-next.3
612
- - @copilotkit/runtime@1.51.3-next.3
613
-
614
- ## 1.51.3-next.2
615
-
616
- ### Patch Changes
617
-
618
- - @copilotkit/shared@1.51.3-next.2
619
- - @copilotkit/agent@1.51.3-next.2
620
- - @copilotkit/runtime@1.51.3-next.2
621
-
622
- ## 1.51.3-next.1
623
-
624
- ### Patch Changes
625
-
626
- - Updated dependencies [29d70a5]
627
- - @copilotkit/agent@1.51.3-next.1
628
- - @copilotkit/shared@1.51.3-next.1
629
- - @copilotkit/runtime@1.51.3-next.1
630
-
631
- ## 1.51.3-next.0
632
-
633
- ### Patch Changes
634
-
635
- - d268c49: fix: add apiKey parameter to BuiltInAgentConfiguration
636
- - Updated dependencies [d268c49]
637
- - @copilotkit/agent@1.51.3-next.0
638
- - @copilotkit/shared@1.51.3-next.0
639
- - @copilotkit/runtime@1.51.3-next.0
640
-
641
- ## 1.51.2
642
-
643
- ### Patch Changes
644
-
645
- - e59d23f: Use deps instead of peerdeps
646
- - e59d23f: Move in-repo deps from peerdeps to actual deps
647
- - Updated dependencies [e59d23f]
648
- - Updated dependencies [f36b6b1]
649
- - @copilotkit/runtime@1.51.2
650
- - @copilotkit/agent@1.51.2
651
- - @copilotkit/shared@1.51.2
652
-
653
- ## 1.51.2-next.1
654
-
655
- ### Patch Changes
656
-
657
- - e59d23f: Use deps instead of peerdeps
658
- - e59d23f: Move in-repo deps from peerdeps to actual deps
659
- - Updated dependencies [e59d23f]
660
- - @copilotkit/runtime@1.51.2-next.1
661
- - @copilotkit/agent@1.51.2-next.1
662
- - @copilotkit/shared@1.51.2-next.1
663
-
664
- ## 1.51.2-next.0
665
-
666
- ### Patch Changes
667
-
668
- - Updated dependencies [f36b6b1]
669
- - @copilotkit/agent@1.51.2-next.0
670
- - @copilotkit/shared@1.51.2-next.0
671
- - @copilotkit/runtime@1.51.2-next.0
672
-
673
- ## 1.51.1
674
-
675
- ### Patch Changes
676
-
677
- - Updated dependencies [329653b]
678
- - @copilotkit/agent@1.51.1
679
- - @copilotkit/shared@1.51.1
680
- - @copilotkit/runtime@1.51.1
681
-
682
- ## 1.51.0
683
-
684
- ### Patch Changes
685
-
686
- - 2839a15: fix: restore and fix handle method in node http
687
- - 2839a15: Update versioning strategy
688
- - 2839a15: fix: use direct hono node integration on node-http integration
689
- - 4addb72: Fix ci again but really for real this time
690
- - Updated dependencies [2793a11]
691
- - Updated dependencies [73f196f]
692
- - Updated dependencies [2839a15]
693
- - Updated dependencies [2afd4e3]
694
- - @copilotkit/runtime@1.51.0
695
- - @copilotkit/shared@1.51.0
696
- - @copilotkit/agent@1.51.0
697
-
698
- ## 1.51.0-next.4
699
-
700
- ### Patch Changes
701
-
702
- - Updated dependencies [2793a11]
703
- - @copilotkit/runtime@1.51.0-next.4
704
- - @copilotkit/shared@1.51.0-next.4
705
- - @copilotkit/agent@1.51.0-next.4
706
-
707
- ## 1.51.0-next.3
708
-
709
- ### Patch Changes
710
-
711
- - Updated dependencies [73f196f]
712
- - @copilotkit/runtime@1.51.0-next.3
713
- - @copilotkit/shared@1.51.0-next.3
714
- - @copilotkit/agent@1.51.0-next.3
715
-
716
- ## 1.51.0-next.2
717
-
718
- ### Patch Changes
719
-
720
- - 4addb72: Fix ci again but really for real this time
721
- - Updated dependencies [2afd4e3]
722
- - @copilotkit/shared@1.51.0-next.2
723
- - @copilotkit/agent@1.51.0-next.2
724
- - @copilotkit/runtime@1.51.0-next.2
725
-
726
- ## 1.51.0-next.1
727
-
728
- ### Patch Changes
729
-
730
- - @copilotkit/shared@1.51.0-next.1
731
- - @copilotkit/agent@1.51.0-next.1
732
- - @copilotkit/runtime@1.51.0-next.1
733
-
734
- ## 1.50.2-next.0
735
-
736
- ### Patch Changes
737
-
738
- - cf245a6: fix: restore and fix handle method in node http
739
- - cf245a6: fix: use direct hono node integration on node-http integration
740
- - @copilotkit/shared@1.50.2-next.0
741
-
742
- ## 1.50.1
743
-
744
- ### Patch Changes
745
-
746
- - 80dffec: Updated the default model and API version for the Google GenAI adapter
747
- - eac8b20: - fix: use latest vnext
748
- - Updated dependencies [80dffec]
749
- - @copilotkit/shared@1.50.1
750
-
751
- ## 1.50.1-next.3
752
-
753
- ### Patch Changes
754
-
755
- - eac8b20: - fix: use latest vnext
756
- - @copilotkit/shared@1.50.1-next.3
757
-
758
- ## 1.50.1-next.2
759
-
760
- ### Patch Changes
761
-
762
- - @copilotkit/shared@1.50.1-next.2
763
-
764
- ## 1.50.1-next.1
765
-
766
- ### Patch Changes
767
-
768
- - @copilotkit/shared@1.50.1-next.1
769
-
770
- ## 1.50.1-next.0
771
-
772
- ### Patch Changes
773
-
774
- - Updated the default model and API version for the Google GenAI adapter
775
- - Updated dependencies
776
- - @copilotkit/shared@1.50.1-next.0
777
-
778
- ## 1.50.0
779
-
780
- ### Minor Changes
781
-
782
- - 0fc76d7: add new runner with telemetry baked in
783
- - c942f9c: Minor fixes and stability improvements
784
- - bad5f06: - feat: port old endpoint creators to 2.0
785
- - eed6021: Updating to the latest version of vnext
786
- - 3b7367e: Improving general stability around LangChain
787
- - 7ff9ca7: Minor fixes and improvements
788
- - 5a6029e: - fix(runtime): Update method for merging tools in assignToolsToAgent
789
- - feat(runtime): Export v2 of the runtime as a subpackage
790
- - 974875e: Lint and format code to resolve Prettier errors
791
- - 4942f62: - feat: create rerouting CopilotRuntime
792
- - 3bd484f: Minor fixes and stability improvements
793
- - 5a534bf: fix telemetry in v1.50 runtime
794
- - 769a06c: Refactor suggestions to not always run
795
- - 788292b: Improving langchain dependency resolution
796
- - eab69a2: Enabling the new inspector
797
- - 0a7bfe0: Updating dependency versions across all packages
798
-
799
- ### Patch Changes
800
-
801
- - b780092: - fix: treeshake and make providers optional
802
- - b0e3652: - chore: Update to latest of vnext
803
- - d55a8bd: - feat(runtime): export v2 of the runtime as a subpackage
804
- - fix(runtime): update method for merging tools in assignToolsToAgent
805
- - fix: remove redundant agent instantiation code
806
- - aee1e42: - fix: use hono node directly instead of express for the node http integration
807
- - 18ba908: - fix: unpack and set agents as promise, to avoid delaying runtime instantiation
808
- - c70210e: - feat: use copilotnext's single endpoint
809
- - Updated dependencies [0fc76d7]
810
- - Updated dependencies [c942f9c]
811
- - Updated dependencies [b0e3652]
812
- - Updated dependencies [eed6021]
813
- - Updated dependencies [3b7367e]
814
- - Updated dependencies [7ff9ca7]
815
- - Updated dependencies [974875e]
816
- - Updated dependencies [4942f62]
817
- - Updated dependencies [3bd484f]
818
- - Updated dependencies [5a534bf]
819
- - Updated dependencies [769a06c]
820
- - Updated dependencies [788292b]
821
- - Updated dependencies [eab69a2]
822
- - Updated dependencies [0a7bfe0]
823
- - @copilotkit/shared@1.50.0
824
-
825
- ## 1.50.0-beta.19
826
-
827
- ### Minor Changes
828
-
829
- - Improving langchain dependency resolution
830
-
831
- ### Patch Changes
832
-
833
- - Updated dependencies
834
- - @copilotkit/shared@1.50.0-beta.19
835
-
836
- ## 1.50.0-beta.18
837
-
838
- ### Minor Changes
839
-
840
- - Improving general stability around LangChain
841
-
842
- ### Patch Changes
843
-
844
- - Updated dependencies
845
- - @copilotkit/shared@1.50.0-beta.18
846
-
847
- ## 1.50.0-beta.17
848
-
849
- ### Minor Changes
850
-
851
- - Minor fixes and improvements
852
-
853
- ### Patch Changes
854
-
855
- - Updated dependencies
856
- - @copilotkit/shared@1.50.0-beta.17
857
-
858
- ## 1.50.0-beta.16
859
-
860
- ### Minor Changes
861
-
862
- - Minor fixes and stability improvements
863
-
864
- ### Patch Changes
865
-
866
- - Updated dependencies
867
- - @copilotkit/shared@1.50.0-beta.16
868
-
869
- ## 1.50.0-beta.15
870
-
871
- ### Minor Changes
872
-
873
- - Lint and format code to resolve Prettier errors
874
-
875
- ### Patch Changes
876
-
877
- - Updated dependencies
878
- - @copilotkit/shared@1.50.0-beta.15
879
-
880
- ## 1.50.0-beta.14
881
-
882
- ### Minor Changes
883
-
884
- - Minor fixes and stability improvements
885
-
886
- ### Patch Changes
887
-
888
- - Updated dependencies
889
- - @copilotkit/shared@1.50.0-beta.14
890
-
891
- ## 1.50.0-beta.13
892
-
893
- ### Minor Changes
894
-
895
- - Updating to the latest version of vnext
896
-
897
- ### Patch Changes
898
-
899
- - Updated dependencies
900
- - @copilotkit/shared@1.50.0-beta.13
901
-
902
- ## 1.50.0-beta.12
903
-
904
- ### Minor Changes
905
-
906
- - eab69a2: Enabling the new inspector
907
-
908
- ### Patch Changes
909
-
910
- - Updated dependencies [eab69a2]
911
- - @copilotkit/shared@1.50.0-beta.12
912
-
913
- ## 1.50.0-beta.11
914
-
915
- ### Minor Changes
916
-
917
- - fix telemetry in v1.50 runtime
918
-
919
- ### Patch Changes
920
-
921
- - Updated dependencies
922
- - @copilotkit/shared@1.50.0-beta.11
923
-
924
- ## 1.50.0-beta.10
925
-
926
- ### Minor Changes
927
-
928
- - add new runner with telemetry baked in
929
-
930
- ### Patch Changes
931
-
932
- - Updated dependencies
933
- - @copilotkit/shared@1.50.0-beta.10
934
-
935
- ## 1.50.0-beta.9
936
-
937
- ### Minor Changes
938
-
939
- - Refactor suggestions to not always run
940
-
941
- ### Patch Changes
942
-
943
- - Updated dependencies
944
- - @copilotkit/shared@1.50.0-beta.9
945
-
946
- ## 1.50.0-beta.8
947
-
948
- ### Patch Changes
949
-
950
- - @copilotkit/shared@1.50.0-beta.8
951
-
952
- ## 1.50.0-beta.7
953
-
954
- ### Patch Changes
955
-
956
- - @copilotkit/shared@1.50.0-beta.7
957
-
958
- ## 1.50.0-beta.6
959
-
960
- ### Minor Changes
961
-
962
- - Updating dependency versions across all packages
963
-
964
- ### Patch Changes
965
-
966
- - Updated dependencies
967
- - @copilotkit/shared@1.50.0-beta.6
968
-
969
- ## 1.50.0-beta.4
970
-
971
- ### Minor Changes
972
-
973
- - bad5f06: - feat: port old endpoint creators to 2.0
974
- - 5a6029e: - fix(runtime): Update method for merging tools in assignToolsToAgent
975
- - feat(runtime): Export v2 of the runtime as a subpackage
976
- - 4942f62: - feat: create rerouting CopilotRuntime
977
-
978
- ### Patch Changes
979
-
980
- - b780092: - fix: treeshake and make providers optional
981
- - b0e3652: - chore: Update to latest of vnext
982
- - d55a8bd: - feat(runtime): export v2 of the runtime as a subpackage
983
- - fix(runtime): update method for merging tools in assignToolsToAgent
984
- - fix: remove redundant agent instantiation code
985
- - aee1e42: - fix: use hono node directly instead of express for the node http integration
986
- - 18ba908: - fix: unpack and set agents as promise, to avoid delaying runtime instantiation
987
- - c70210e: - feat: use copilotnext's single endpoint
988
- - Updated dependencies [b0e3652]
989
- - Updated dependencies [4942f62]
990
- - @copilotkit/shared@1.50.0-beta.4
991
-
992
- ## 1.10.7-next.0
993
-
994
- ### Patch Changes
995
-
996
- - @copilotkit/shared@1.10.7-next.0
997
-
998
- ## 1.10.6
999
-
1000
- ### Patch Changes
1001
-
1002
- - 01e0a4b: - fix: use all AGUI as peer dependencies
1003
- - e0dd5d5: - feat: allow additional config in direct to llm actions
1004
- - 7455309: - feat: use latest agui langgraph integration packages
1005
- - Updated dependencies [e0dd5d5]
1006
- - @copilotkit/shared@1.10.6
1007
-
1008
- ## 1.10.6-next.6
1009
-
1010
- ### Patch Changes
1011
-
1012
- - 7455309: - feat: use latest agui langgraph integration packages
1013
- - @copilotkit/shared@1.10.6-next.6
1014
-
1015
- ## 1.10.6-next.5
1016
-
1017
- ### Patch Changes
1018
-
1019
- - e0dd5d5: - feat: allow additional config in direct to llm actions
1020
- - Updated dependencies [e0dd5d5]
1021
- - @copilotkit/shared@1.10.6-next.5
1022
-
1023
- ## 1.10.6-next.4
1024
-
1025
- ### Patch Changes
1026
-
1027
- - @copilotkit/shared@1.10.6-next.4
1028
-
1029
- ## 1.10.6-next.3
1030
-
1031
- ### Patch Changes
1032
-
1033
- - 01e0a4b: - fix: use all AGUI as peer dependencies
1034
- - @copilotkit/shared@1.10.6-next.3
1035
-
1036
- ## 1.10.6-next.2
1037
-
1038
- ### Patch Changes
1039
-
1040
- - @copilotkit/shared@1.10.6-next.2
1041
-
1042
- ## 1.10.6-next.1
1043
-
1044
- ### Patch Changes
1045
-
1046
- - @copilotkit/shared@1.10.6-next.1
1047
-
1048
- ## 1.10.6-next.0
1049
-
1050
- ### Patch Changes
1051
-
1052
- - @copilotkit/shared@1.10.6-next.0
1053
-
1054
- ## 1.10.5
1055
-
1056
- ### Patch Changes
1057
-
1058
- - b7bc3a0: - feat: pass copilot readable context to agui agents
1059
- - f199c94: - feat: update agui packages
1060
- - 7467f97: - feat: add stop generation callback and call abort agui agent
1061
- - e730369: - feat: use latest agui langgraph package
1062
- - feat: use latest agui fastapi langgraph package and dependencies
1063
- - c9e32b0: - fix: upgrade agui langgraph version
1064
- - 23fe6a1: - chore: publish python sdk using latest agui
1065
- - feat: use latest agui packages
1066
- - @copilotkit/shared@1.10.5
1067
-
1068
- ## 1.10.5-next.10
1069
-
1070
- ### Patch Changes
1071
-
1072
- - @copilotkit/shared@1.10.5-next.10
1073
-
1074
- ## 1.10.5-next.9
1075
-
1076
- ### Patch Changes
1077
-
1078
- - f199c94: - feat: update agui packages
1079
- - @copilotkit/shared@1.10.5-next.9
1080
-
1081
- ## 1.10.5-next.8
1082
-
1083
- ### Patch Changes
1084
-
1085
- - @copilotkit/shared@1.10.5-next.8
1086
-
1087
- ## 1.10.5-next.7
1088
-
1089
- ### Patch Changes
1090
-
1091
- - c9e32b0: - fix: upgrade agui langgraph version
1092
- - @copilotkit/shared@1.10.5-next.7
1093
-
1094
- ## 1.10.5-next.6
1095
-
1096
- ### Patch Changes
1097
-
1098
- - @copilotkit/shared@1.10.5-next.6
1099
-
1100
- ## 1.10.5-next.5
1101
-
1102
- ### Patch Changes
1103
-
1104
- - @copilotkit/shared@1.10.5-next.5
1105
-
1106
- ## 1.10.5-next.4
1107
-
1108
- ### Patch Changes
1109
-
1110
- - e730369: - feat: use latest agui langgraph package
1111
- - feat: use latest agui fastapi langgraph package and dependencies
1112
- - @copilotkit/shared@1.10.5-next.4
1113
-
1114
- ## 1.10.5-next.3
1115
-
1116
- ### Patch Changes
1117
-
1118
- - 23fe6a1: - chore: publish python sdk using latest agui
1119
- - feat: use latest agui packages
1120
- - @copilotkit/shared@1.10.5-next.3
1121
-
1122
- ## 1.10.5-next.2
1123
-
1124
- ### Patch Changes
1125
-
1126
- - 7467f97: - feat: add stop generation callback and call abort agui agent
1127
- - @copilotkit/shared@1.10.5-next.2
1128
-
1129
- ## 1.10.5-next.1
1130
-
1131
- ### Patch Changes
1132
-
1133
- - b7bc3a0: - feat: pass copilot readable context to agui agents
1134
- - @copilotkit/shared@1.10.5-next.1
1135
-
1136
- ## 1.10.5-next.0
1137
-
1138
- ### Patch Changes
1139
-
1140
- - @copilotkit/shared@1.10.5-next.0
1141
-
1142
- ## 1.10.4
1143
-
1144
- ### Patch Changes
1145
-
1146
- - a640d8e: - feat: update latest agui langgraph for subgraphs support
1147
- - feat: update latest agui core packages
1148
- - Updated dependencies [a640d8e]
1149
- - @copilotkit/shared@1.10.4
1150
-
1151
- ## 1.10.4-next.3
1152
-
1153
- ### Patch Changes
1154
-
1155
- - @copilotkit/shared@1.10.4-next.3
1156
-
1157
- ## 1.10.4-next.2
1158
-
1159
- ### Patch Changes
1160
-
1161
- - @copilotkit/shared@1.10.4-next.2
1162
-
1163
- ## 1.10.4-next.1
1164
-
1165
- ### Patch Changes
1166
-
1167
- - a640d8e: - feat: update latest agui langgraph for subgraphs support
1168
- - feat: update latest agui core packages
1169
- - Updated dependencies [a640d8e]
1170
- - @copilotkit/shared@1.10.4-next.1
1171
-
1172
- ## 1.10.4-next.0
1173
-
1174
- ### Patch Changes
1175
-
1176
- - @copilotkit/shared@1.10.4-next.0
1177
-
1178
- ## 1.10.3
1179
-
1180
- ### Patch Changes
1181
-
1182
- - ea74047: - fix: surface run errors from agui
1183
- - a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
1184
- - 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
1185
- - Updated dependencies [ea74047]
1186
- - @copilotkit/shared@1.10.3
1187
-
1188
- ## 1.10.3-next.3
1189
-
1190
- ### Patch Changes
1191
-
1192
- - 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
1193
- - @copilotkit/shared@1.10.3-next.3
1194
-
1195
- ## 1.10.3-next.2
1196
-
1197
- ### Patch Changes
1198
-
1199
- - a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
1200
- - @copilotkit/shared@1.10.3-next.2
1201
-
1202
- ## 1.10.3-next.1
1203
-
1204
- ### Patch Changes
1205
-
1206
- - @copilotkit/shared@1.10.3-next.1
1207
-
1208
- ## 1.10.3-next.0
1209
-
1210
- ### Patch Changes
1211
-
1212
- - ea74047: - fix: surface run errors from agui
1213
- - Updated dependencies [ea74047]
1214
- - @copilotkit/shared@1.10.3-next.0
1215
-
1216
- ## 1.10.2
1217
-
1218
- ### Patch Changes
1219
-
1220
- - @copilotkit/shared@1.10.2
1221
-
1222
- ## 1.10.2-next.0
1223
-
1224
- ### Patch Changes
1225
-
1226
- - @copilotkit/shared@1.10.2-next.0
1227
-
1228
- ## 1.10.1
1229
-
1230
- ### Patch Changes
1231
-
1232
- - @copilotkit/shared@1.10.1
1233
-
1234
- ## 1.10.1-next.2
1235
-
1236
- ### Patch Changes
1237
-
1238
- - @copilotkit/shared@1.10.1-next.2
1239
-
1240
- ## 1.10.1-next.1
1241
-
1242
- ### Patch Changes
1243
-
1244
- - @copilotkit/shared@1.10.1-next.1
1245
-
1246
- ## 1.10.1-next.0
1247
-
1248
- ### Patch Changes
1249
-
1250
- - @copilotkit/shared@1.10.1-next.0
1251
-
1252
- ## 1.10.0
1253
-
1254
- ### Patch Changes
1255
-
1256
- - 1abcecf: - fix: add graphqlContext to constructAGUIRemoteAction for enhanced agent properties
1257
- - Updated constructAGUIRemoteAction to accept graphqlContext, allowing forwarding of properties like Authorization token to the agent.
1258
- - Modified setupRemoteActions to include graphqlContext in the parameters.
1259
-
1260
- - 6f2f54b: - fix(openai): update maxTokens parameter to max_completion_tokens in OpenAIAdapter
1261
- - b5b94b9: - fix: throw errors when they happen with agui streams
1262
- - 824fb69: - fix: pass config to the forwarded props of an agui agent
1263
- - 59b0e16: - feat: add native prompt caching support to AnthropicAdapter
1264
- - a31443c: removed unused dependency on ip module
1265
- - dc6df18: - feat: use latest agui langgraph package
1266
- - chore: release python sdk 0.1.58
1267
- - Updated dependencies [a8c0263]
1268
- - Updated dependencies [8674da1]
1269
- - Updated dependencies [6d1de58]
1270
- - @copilotkit/shared@1.10.0
1271
-
1272
- ## 1.10.0-next.13
1273
-
1274
- ### Patch Changes
1275
-
1276
- - b5b94b9: - fix: throw errors when they happen with agui streams
1277
- - @copilotkit/shared@1.10.0-next.13
1278
-
1279
- ## 1.10.0-next.12
1280
-
1281
- ### Patch Changes
1282
-
1283
- - @copilotkit/shared@1.10.0-next.12
1284
-
1285
- ## 1.10.0-next.11
1286
-
1287
- ### Patch Changes
1288
-
1289
- - dc6df18: - feat: use latest agui langgraph package
1290
- - chore: release python sdk 0.1.58
1291
- - @copilotkit/shared@1.10.0-next.11
1292
-
1293
- ## 1.10.0-next.10
1294
-
1295
- ### Patch Changes
1296
-
1297
- - Updated dependencies [6d1de58]
1298
- - @copilotkit/shared@1.10.0-next.10
1299
-
1300
- ## 1.10.0-next.9
1301
-
1302
- ### Patch Changes
1303
-
1304
- - @copilotkit/shared@1.10.0-next.9
1305
-
1306
- ## 1.10.0-next.8
1307
-
1308
- ### Patch Changes
1309
-
1310
- - @copilotkit/shared@1.10.0-next.8
1311
-
1312
- ## 1.10.0-next.7
1313
-
1314
- ### Patch Changes
1315
-
1316
- - 59b0e16: - feat: add native prompt caching support to AnthropicAdapter
1317
- - @copilotkit/shared@1.10.0-next.7
1318
-
1319
- ## 1.10.0-next.6
1320
-
1321
- ### Patch Changes
1322
-
1323
- - 6f2f54b: - fix(openai): update maxTokens parameter to max_completion_tokens in OpenAIAdapter
1324
- - @copilotkit/shared@1.10.0-next.6
1325
-
1326
- ## 1.10.0-next.5
1327
-
1328
- ### Patch Changes
1329
-
1330
- - Updated dependencies [a8c0263]
1331
- - @copilotkit/shared@1.10.0-next.5
1332
-
1333
- ## 1.10.0-next.4
1334
-
1335
- ### Patch Changes
1336
-
1337
- - @copilotkit/shared@1.10.0-next.4
1338
-
1339
- ## 1.10.0-next.3
1340
-
1341
- ### Patch Changes
1342
-
1343
- - 824fb69: - fix: pass config to the forwarded props of an agui agent
1344
- - @copilotkit/shared@1.10.0-next.3
1345
-
1346
- ## 1.10.0-next.2
1347
-
1348
- ### Patch Changes
1349
-
1350
- - a31443c: removed unused dependency on ip module
1351
- - @copilotkit/shared@1.10.0-next.2
1352
-
1353
- ## 1.10.0-next.1
1354
-
1355
- ### Patch Changes
1356
-
1357
- - 1abcecf: - fix: add graphqlContext to constructAGUIRemoteAction for enhanced agent properties
1358
- - Updated constructAGUIRemoteAction to accept graphqlContext, allowing forwarding of properties like Authorization token to the agent.
1359
- - Modified setupRemoteActions to include graphqlContext in the parameters.
1360
- - @copilotkit/shared@1.10.0-next.1
1361
-
1362
- ## 1.10.0-next.0
1363
-
1364
- ### Patch Changes
1365
-
1366
- - Updated dependencies [8674da1]
1367
- - @copilotkit/shared@1.10.0-next.0
1368
-
1369
- ## 1.9.3
1370
-
1371
- ### Patch Changes
1372
-
1373
- - 1bda332: - chore(telemetry): integrate Scarf for usage analytics
1374
- - df25f34: - feat: add agui fastAPI compatible langgraph agent
1375
- - chore: release 0.1.55 with agui langgraph fastapi support
1376
- - 589ae52: - adds scarf deps to runtime
1377
- - 88ceae2: - upgrade AG-UI packages
1378
- - Updated dependencies [1bda332]
1379
- - @copilotkit/shared@1.9.3
1380
-
1381
- ## 1.9.3-next.4
1382
-
1383
- ### Patch Changes
1384
-
1385
- - @copilotkit/shared@1.9.3-next.4
1386
-
1387
- ## 1.9.3-next.3
1388
-
1389
- ### Patch Changes
1390
-
1391
- - 1bda332: - chore(telemetry): integrate Scarf for usage analytics
1392
- - Updated dependencies [1bda332]
1393
- - @copilotkit/shared@1.9.3-next.3
1394
-
1395
- ## 1.9.3-next.2
1396
-
1397
- ### Patch Changes
1398
-
1399
- - df25f34: - feat: add agui fastAPI compatible langgraph agent
1400
- - chore: release 0.1.55 with agui langgraph fastapi support
1401
- - @copilotkit/shared@1.9.3-next.2
1402
-
1403
- ## 1.9.3-next.1
1404
-
1405
- ### Patch Changes
1406
-
1407
- - 589ae52: - adds scarf deps to runtime
1408
- - @copilotkit/shared@1.9.3-next.1
1409
-
1410
- ## 1.9.3-next.0
1411
-
1412
- ### Patch Changes
1413
-
1414
- - 88ceae2: - upgrade AG-UI packages
1415
- - @copilotkit/shared@1.9.3-next.0
1416
-
1417
- ## 1.9.2
1418
-
1419
- ### Patch Changes
1420
-
1421
- - f3f0181: - fix: connect streaming errors to runtime onError handler
1422
- - remove request logging
1423
- - 3a7f45f: - fix: resolve agui agents only after all other endpoints
1424
- - fac89c2: - refactor: rename onTrace to onError throughout codebase
1425
- - Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
1426
-
1427
- - 7ca7023: - feat: send node name to agui agent
1428
- - 54b62f0: - fix: add default schema keys for input and output of agui langgraph
1429
- - 4fd92d1: - fix: enable resolving of langgraph agents when cpk starts
1430
- - 1f4949a: - fix: remove agent discovery for agui agents
1431
- - 9169ad7: - feat: add onTrace handler for runtime and UI error/event tracking
1432
- - f3f0181: - fix: connect streaming errors to runtime onError handler
1433
- - 8e67158: - fixes gemini adapter
1434
- - 83822d2: - fix: do not show error on state loading if thread does not exist
1435
- - fe9009c: - feat(langgraph): new thread metadata
1436
- - f295375: - fix: remove all agents as tools when there is an active agent session
1437
- - fix formatting
1438
- - 9b986ba: - fix: use active interrupt from thread instead of saving to global state
1439
- - 1d1c51d: - feat: surface all errors in structured format
1440
- - dec5527: - fix: only fetch agent state for langgraph agents
1441
- - 9b81464: - fix: use latest langgraph agui
1442
- - 10345a5: - feat: structured error visibility system for streaming errors
1443
- - 8ef8199: - fix: use latest agui dependencies to include required fixes
1444
- - 20e8c3c: - fix(anthropic-adapter): resolve infinite loop caused by duplicate result messages
1445
- - 9169ad7: - feat: add onTrace handler for comprehensive debugging and observability - Add CopilotTraceEvent interfaces with rich debugging context, implement runtime-side tracing with publicApiKey gating, add UI-side error tracing, include comprehensive test coverage, and fix tsup build config to exclude test files
1446
- - fix: extract publicApiKey for all requests + trace GraphQL errors
1447
- - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
1448
- - Ensures consistency in how parameters are passed to the execute function across the codebase.
1449
- - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
1450
- - Fixed generateMcpToolInstructions to properly extract parameters from schema.parameters.properties
1451
- - fix: enhance MCP schema support for complex types and remove duplicate headers
1452
- - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
1453
- - Updated dependencies [fac89c2]
1454
- - Updated dependencies [9169ad7]
1455
- - Updated dependencies [1d1c51d]
1456
- - Updated dependencies [10345a5]
1457
- - Updated dependencies [9169ad7]
1458
- - @copilotkit/shared@1.9.2
1459
-
1460
- ## 1.9.2-next.26
1461
-
1462
- ### Patch Changes
1463
-
1464
- - 83822d2: - fix: do not show error on state loading if thread does not exist
1465
- - @copilotkit/shared@1.9.2-next.26
1466
-
1467
- ## 1.9.2-next.25
1468
-
1469
- ### Patch Changes
1470
-
1471
- - f3f0181: - fix: connect streaming errors to runtime onError handler
1472
- - remove request logging
1473
- - f3f0181: - fix: connect streaming errors to runtime onError handler
1474
- - @copilotkit/shared@1.9.2-next.25
1475
-
1476
- ## 1.9.2-next.24
1477
-
1478
- ### Patch Changes
1479
-
1480
- - 8ef8199: - fix: use latest agui dependencies to include required fixes
1481
- - @copilotkit/shared@1.9.2-next.24
1482
-
1483
- ## 1.9.2-next.23
1484
-
1485
- ### Patch Changes
1486
-
1487
- - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
1488
- - Ensures consistency in how parameters are passed to the execute function across the codebase.
1489
- - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
1490
- - Fixed generateMcpToolInstructions to properly extract parameters from schema.parameters.properties
1491
- - fix: enhance MCP schema support for complex types and remove duplicate headers
1492
- - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
1493
- - @copilotkit/shared@1.9.2-next.23
1494
-
1495
- ## 1.9.2-next.22
1496
-
1497
- ### Patch Changes
1498
-
1499
- - @copilotkit/shared@1.9.2-next.22
1500
-
1501
- ## 1.9.2-next.21
1502
-
1503
- ### Patch Changes
1504
-
1505
- - @copilotkit/shared@1.9.2-next.21
1506
-
1507
- ## 1.9.2-next.20
1508
-
1509
- ### Patch Changes
1510
-
1511
- - @copilotkit/shared@1.9.2-next.20
1512
-
1513
- ## 1.9.2-next.19
1514
-
1515
- ### Patch Changes
1516
-
1517
- - 8e67158: - fixes gemini adapter
1518
- - @copilotkit/shared@1.9.2-next.19
1519
-
1520
- ## 1.9.2-next.18
1521
-
1522
- ### Patch Changes
1523
-
1524
- - fac89c2: - refactor: rename onTrace to onError throughout codebase
1525
- - Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
1526
-
1527
- - Updated dependencies [fac89c2]
1528
- - @copilotkit/shared@1.9.2-next.18
1529
-
1530
- ## 1.9.2-next.17
1531
-
1532
- ### Patch Changes
1533
-
1534
- - 7ca7023: - feat: send node name to agui agent
1535
- - @copilotkit/shared@1.9.2-next.17
1536
-
1537
- ## 1.9.2-next.16
1538
-
1539
- ### Patch Changes
1540
-
1541
- - fe9009c: - feat(langgraph): new thread metadata
1542
- - @copilotkit/shared@1.9.2-next.16
1543
-
1544
- ## 1.9.2-next.15
1545
-
1546
- ### Patch Changes
1547
-
1548
- - @copilotkit/shared@1.9.2-next.15
1549
-
1550
- ## 1.9.2-next.14
1551
-
1552
- ### Patch Changes
1553
-
1554
- - 3a7f45f: - fix: resolve agui agents only after all other endpoints
1555
- - @copilotkit/shared@1.9.2-next.14
1556
-
1557
- ## 1.9.2-next.13
1558
-
1559
- ### Patch Changes
1560
-
1561
- - dec5527: - fix: only fetch agent state for langgraph agents
1562
- - @copilotkit/shared@1.9.2-next.13
1563
-
1564
- ## 1.9.2-next.12
1565
-
1566
- ### Patch Changes
1567
-
1568
- - @copilotkit/shared@1.9.2-next.12
1569
-
1570
- ## 1.9.2-next.11
1571
-
1572
- ### Patch Changes
1573
-
1574
- - 1f4949a: - fix: remove agent discovery for agui agents
1575
- - @copilotkit/shared@1.9.2-next.11
1576
-
1577
- ## 1.9.2-next.10
1578
-
1579
- ### Patch Changes
1580
-
1581
- - 20e8c3c: - fix(anthropic-adapter): resolve infinite loop caused by duplicate result messages
1582
- - @copilotkit/shared@1.9.2-next.10
1583
-
1584
- ## 1.9.2-next.9
1585
-
1586
- ### Patch Changes
1587
-
1588
- - 1d1c51d: - feat: surface all errors in structured format
1589
- - Updated dependencies [1d1c51d]
1590
- - @copilotkit/shared@1.9.2-next.9
1591
-
1592
- ## 1.9.2-next.8
1593
-
1594
- ### Patch Changes
1595
-
1596
- - 9b986ba: - fix: use active interrupt from thread instead of saving to global state
1597
- - @copilotkit/shared@1.9.2-next.8
1598
-
1599
- ## 1.9.2-next.7
1600
-
1601
- ### Patch Changes
1602
-
1603
- - 54b62f0: - fix: add default schema keys for input and output of agui langgraph
1604
- - @copilotkit/shared@1.9.2-next.7
1605
-
1606
- ## 1.9.2-next.6
1607
-
1608
- ### Patch Changes
1609
-
1610
- - 4fd92d1: - fix: enable resolving of langgraph agents when cpk starts
1611
- - @copilotkit/shared@1.9.2-next.6
1612
-
1613
- ## 1.9.2-next.5
1614
-
1615
- ### Patch Changes
1616
-
1617
- - @copilotkit/shared@1.9.2-next.5
1618
-
1619
- ## 1.9.2-next.4
1620
-
1621
- ### Patch Changes
1622
-
1623
- - 9169ad7: - feat: add onTrace handler for runtime and UI error/event tracking
1624
- - 9169ad7: - feat: add onTrace handler for comprehensive debugging and observability - Add CopilotTraceEvent interfaces with rich debugging context, implement runtime-side tracing with publicApiKey gating, add UI-side error tracing, include comprehensive test coverage, and fix tsup build config to exclude test files
1625
- - fix: extract publicApiKey for all requests + trace GraphQL errors
1626
- - Updated dependencies [9169ad7]
1627
- - Updated dependencies [9169ad7]
1628
- - @copilotkit/shared@1.9.2-next.4
1629
-
1630
- ## 1.9.2-next.3
1631
-
1632
- ### Patch Changes
1633
-
1634
- - @copilotkit/shared@1.9.2-next.3
1635
-
1636
- ## 1.9.2-next.2
1637
-
1638
- ### Patch Changes
1639
-
1640
- - 9b81464: - fix: use latest langgraph agui
1641
- - @copilotkit/shared@1.9.2-next.2
1642
-
1643
- ## 1.9.2-next.1
1644
-
1645
- ### Patch Changes
1646
-
1647
- - f295375: - fix: remove all agents as tools when there is an active agent session
1648
- - fix formatting
1649
- - @copilotkit/shared@1.9.2-next.1
1650
-
1651
- ## 1.9.2-next.0
1652
-
1653
- ### Patch Changes
1654
-
1655
- - 10345a5: - feat: structured error visibility system for streaming errors
1656
- - Updated dependencies [10345a5]
1657
- - @copilotkit/shared@1.9.2-next.0
1658
-
1659
- ## 1.9.1
1660
-
1661
- ### Patch Changes
1662
-
1663
- - deaeca0: - feat: Add public key
1664
-
1665
- Signed-off-by: Luis Valdes <luis@copilotkit.ai>
1666
-
1667
- - Updated dependencies [deaeca0]
1668
- - @copilotkit/shared@1.9.1
1669
-
1670
- ## 1.9.1-next.0
1671
-
1672
- ### Patch Changes
1673
-
1674
- - deaeca0: - feat: Add public key
1675
-
1676
- Signed-off-by: Luis Valdes <luis@copilotkit.ai>
1677
-
1678
- - Updated dependencies [deaeca0]
1679
- - @copilotkit/shared@1.9.1-next.0
1680
-
1681
- ## 1.9.0
1682
-
1683
- ### Minor Changes
1684
-
1685
- - 8408d58: - feat: create copilotkit agui langgraph agent
1686
- - docs: replace remote endpoint with AGUI agent
1687
-
1688
- ### Patch Changes
1689
-
1690
- - c120e07: - refactor(react-ui): pass full message to onThumbsUp and onThumbsDown handlers
1691
- - 54cae30: - fix(react-core): allow custom toolChoice in forwardedParameters to override default
1692
- - fix: move react-dom to peerDependencies in @copilotkit/react-textarea
1693
- - feat: add amazon bedrock adapter support
1694
- - @copilotkit/shared@1.9.0
1695
-
1696
- ## 1.9.0-next.2
1697
-
1698
- ### Minor Changes
1699
-
1700
- - 8408d58: - feat: create copilotkit agui langgraph agent
1701
- - docs: replace remote endpoint with AGUI agent
1702
-
1703
- ### Patch Changes
1704
-
1705
- - @copilotkit/shared@1.9.0-next.2
1706
-
1707
- ## 1.8.15-next.1
1708
-
1709
- ### Patch Changes
1710
-
1711
- - 54cae30: - fix(react-core): allow custom toolChoice in forwardedParameters to override default
1712
- - fix: move react-dom to peerDependencies in @copilotkit/react-textarea
1713
- - feat: add amazon bedrock adapter support
1714
- - @copilotkit/shared@1.8.15-next.1
1715
-
1716
- ## 1.8.15-next.0
1717
-
1718
- ### Patch Changes
1719
-
1720
- - c120e07: - refactor(react-ui): pass full message to onThumbsUp and onThumbsDown handlers
1721
- - @copilotkit/shared@1.8.15-next.0
1722
-
1723
- ## 1.8.14
1724
-
1725
- ### Patch Changes
1726
-
1727
- - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1728
- - fix(runtime): filter empty text messages in AnthropicAdapter
1729
- - 9d33836: - fix: prepare cpk agui wiring for ag-ui langgraph support
1730
- - 12b8ca8: - fix: fix cpk agui wiring for langgraph
1731
- - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1732
- - 1af7333: - docs: updates ag-ui agent interface
1733
- - Updated dependencies [34a78d8]
1734
- - @copilotkit/shared@1.8.14
1735
-
1736
- ## 1.8.14-next.5
1737
-
1738
- ### Patch Changes
1739
-
1740
- - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1741
- - fix(runtime): filter empty text messages in AnthropicAdapter
1742
- - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1743
- - @copilotkit/shared@1.8.14-next.5
1744
-
1745
- ## 1.8.14-next.4
1746
-
1747
- ### Patch Changes
1748
-
1749
- - 12b8ca8: - fix: fix cpk agui wiring for langgraph
1750
- - @copilotkit/shared@1.8.14-next.4
1751
-
1752
- ## 1.8.14-next.3
1753
-
1754
- ### Patch Changes
1755
-
1756
- - 9d33836: - fix: prepare cpk agui wiring for ag-ui langgraph support
1757
- - @copilotkit/shared@1.8.14-next.3
1758
-
1759
- ## 1.8.14-next.2
1760
-
1761
- ### Patch Changes
1762
-
1763
- - 1af7333: - docs: updates ag-ui agent interface
1764
- - @copilotkit/shared@1.8.14-next.2
1765
-
1766
- ## 1.8.14-next.1
1767
-
1768
- ### Patch Changes
1769
-
1770
- - Updated dependencies [34a78d8]
1771
- - @copilotkit/shared@1.8.14-next.1
1772
-
1773
- ## 1.8.14-next.0
1774
-
1775
- ### Patch Changes
1776
-
1777
- - @copilotkit/shared@1.8.14-next.0
1778
-
1779
- ## 1.8.13
1780
-
1781
- ### Patch Changes
1782
-
1783
- - 6ed54f4: - AG-UI 0.0.28
1784
- - @copilotkit/shared@1.8.13
1785
-
1786
- ## 1.8.13-next.3
1787
-
1788
- ### Patch Changes
1789
-
1790
- - @copilotkit/shared@1.8.13-next.3
1791
-
1792
- ## 1.8.13-next.2
1793
-
1794
- ### Patch Changes
1795
-
1796
- - @copilotkit/shared@1.8.13-next.2
1797
-
1798
- ## 1.8.13-next.1
1799
-
1800
- ### Patch Changes
1801
-
1802
- - @copilotkit/shared@1.8.13-next.1
1803
-
1804
- ## 1.8.13-next.0
1805
-
1806
- ### Patch Changes
1807
-
1808
- - 6ed54f4: - AG-UI 0.0.28
1809
- - @copilotkit/shared@1.8.13-next.0
1810
-
1811
- ## 1.8.12
1812
-
1813
- ### Patch Changes
1814
-
1815
- - 54838cb: - feat: allow keeping system role for openai adapters
1816
- - 2b89ad7: - fix: use latest claude 3.5 as default model instead of specific
1817
- - chore: add missing variable assignment in llm provider docs
1818
- - chore: add missing call to fetch azure api key in docs
1819
- - f419d99: - fix: Implement allowlist approach to prevent duplicate tool_result blocks in API calls to OpenAI and Anthropic
1820
- - @copilotkit/shared@1.8.12
1821
-
1822
- ## 1.8.12-next.6
1823
-
1824
- ### Patch Changes
1825
-
1826
- - @copilotkit/shared@1.8.12-next.6
1827
-
1828
- ## 1.8.12-next.5
1829
-
1830
- ### Patch Changes
1831
-
1832
- - @copilotkit/shared@1.8.12-next.5
1833
-
1834
- ## 1.8.12-next.4
1835
-
1836
- ### Patch Changes
1837
-
1838
- - f419d99: - fix: Implement allowlist approach to prevent duplicate tool_result blocks in API calls to OpenAI and Anthropic
1839
- - @copilotkit/shared@1.8.12-next.4
1840
-
1841
- ## 1.8.12-next.3
1842
-
1843
- ### Patch Changes
1844
-
1845
- - @copilotkit/shared@1.8.12-next.3
1846
-
1847
- ## 1.8.12-next.2
1848
-
1849
- ### Patch Changes
1850
-
1851
- - @copilotkit/shared@1.8.12-next.2
1852
-
1853
- ## 1.8.12-next.1
1854
-
1855
- ### Patch Changes
1856
-
1857
- - 54838cb: - feat: allow keeping system role for openai adapters
1858
- - @copilotkit/shared@1.8.12-next.1
1859
-
1860
- ## 1.8.12-next.0
1861
-
1862
- ### Patch Changes
1863
-
1864
- - 2b89ad7: - fix: use latest claude 3.5 as default model instead of specific
1865
- - chore: add missing variable assignment in llm provider docs
1866
- - chore: add missing call to fetch azure api key in docs
1867
- - @copilotkit/shared@1.8.12-next.0
1868
-
1869
- ## 1.8.11
1870
-
1871
- ### Patch Changes
1872
-
1873
- - 52d0bb5: - fix: do not attempt to hash lgc key if it doesnt exist
1874
- - fix: accept null on langsmith api key
1875
- - @copilotkit/shared@1.8.11
1876
-
1877
- ## 1.8.11-next.1
1878
-
1879
- ### Patch Changes
1880
-
1881
- - 52d0bb5: - fix: do not attempt to hash lgc key if it doesnt exist
1882
- - fix: accept null on langsmith api key
1883
- - @copilotkit/shared@1.8.11-next.1
1884
-
1885
- ## 1.8.11-next.0
1886
-
1887
- ### Patch Changes
1888
-
1889
- - @copilotkit/shared@1.8.11-next.0
1890
-
1891
- ## 1.8.10
1892
-
1893
- ### Patch Changes
1894
-
1895
- - f3a0a33: - updates ag-ui deps
1896
- - 742efbb: - feat: enable setting langgraph config from ui
1897
- - chore: document usage of new config
1898
- - @copilotkit/shared@1.8.10
1899
-
1900
- ## 1.8.10-next.3
1901
-
1902
- ### Patch Changes
1903
-
1904
- - @copilotkit/shared@1.8.10-next.3
1905
-
1906
- ## 1.8.10-next.2
1907
-
1908
- ### Patch Changes
1909
-
1910
- - f3a0a33: - updates ag-ui deps
1911
- - @copilotkit/shared@1.8.10-next.2
1912
-
1913
- ## 1.8.10-next.1
1914
-
1915
- ### Patch Changes
1916
-
1917
- - @copilotkit/shared@1.8.10-next.1
1918
-
1919
- ## 1.8.10-next.0
1920
-
1921
- ### Patch Changes
1922
-
1923
- - 742efbb: - feat: enable setting langgraph config from ui
1924
- - chore: document usage of new config
1925
- - @copilotkit/shared@1.8.10-next.0
1926
-
1927
- ## 1.8.9
1928
-
1929
- ### Patch Changes
1930
-
1931
- - f81a526: - Fix MCP tool schema structure to match interface requirements
1932
- - add utils
1933
- - @copilotkit/shared@1.8.9
1934
-
1935
- ## 1.8.9-next.0
1936
-
1937
- ### Patch Changes
1938
-
1939
- - f81a526: - Fix MCP tool schema structure to match interface requirements
1940
- - add utils
1941
- - @copilotkit/shared@1.8.9-next.0
1942
-
1943
- ## 1.8.8
1944
-
1945
- ### Patch Changes
1946
-
1947
- - 8c26335: - fix: update MCP tool parameter extraction to handle full tool objects
1948
- - dfb67c3: - refactor: rename mcpEndpoints to mcpServers for naming consistency
1949
- - doc changes
1950
- - @copilotkit/shared@1.8.8
1951
-
1952
- ## 1.8.8-next.1
1953
-
1954
- ### Patch Changes
1955
-
1956
- - 8c26335: - fix: update MCP tool parameter extraction to handle full tool objects
1957
- - @copilotkit/shared@1.8.8-next.1
1958
-
1959
- ## 1.8.8-next.0
1960
-
1961
- ### Patch Changes
1962
-
1963
- - dfb67c3: - refactor: rename mcpEndpoints to mcpServers for naming consistency
1964
- - doc changes
1965
- - @copilotkit/shared@1.8.8-next.0
1966
-
1967
- ## 1.8.7
1968
-
1969
- ### Patch Changes
1970
-
1971
- - 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
1972
- - @copilotkit/shared@1.8.7
1973
-
1974
- ## 1.8.7-next.0
1975
-
1976
- ### Patch Changes
1977
-
1978
- - 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
1979
- - @copilotkit/shared@1.8.7-next.0
1980
-
1981
- ## 1.8.6
1982
-
1983
- ### Patch Changes
1984
-
1985
- - 7a04bd1: - fix: fix how results are communicated back on interrupt
1986
- - fix: do not allow followup for interrupt actions
1987
- - chore: improve TS docs for interrupt
1988
- - @copilotkit/shared@1.8.6
1989
-
1990
- ## 1.8.6-next.0
1991
-
1992
- ### Patch Changes
1993
-
1994
- - 7a04bd1: - fix: fix how results are communicated back on interrupt
1995
- - fix: do not allow followup for interrupt actions
1996
- - chore: improve TS docs for interrupt
1997
- - @copilotkit/shared@1.8.6-next.0
1998
-
1999
- ## 1.8.5
2000
-
2001
- ### Patch Changes
2002
-
2003
- - c0d3261: - full AWP support
2004
-
2005
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2006
- - refactor: address linter issues with the new pages
2007
-
2008
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2009
- - Merge branch 'mme/acp' into mme/mastra
2010
- - add sse example
2011
- - Create small-turkeys-agree.md
2012
- - upgrade AWP
2013
- - Merge branch 'mme/mastra' of github.com:CopilotKit/CopilotKit into mme/mastra
2014
- - make agents a dict
2015
- - update docs
2016
- - send tools
2017
- - update to latest packages
2018
- - fix problem where state sync are preventing tool calls
2019
- - set possibly undefined toolCalls to an empty array
2020
- - fix missing tool call ids
2021
-
2022
- - 77a7457: - feat: Add Model Context Protocol (MCP) support
2023
- - 76d9ef9: - fix: handle langgraph client specific errors when running lgc stream
2024
- - c0d3261: - add AWP support
2025
- - make it work
2026
- - update docs
2027
- - refactor: move UI files to be normal NextJS pages and update generation
2028
-
2029
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2030
- - refactor: address linter issues with the new pages
2031
-
2032
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2033
- - Merge branch 'mme/acp' into mme/mastra
2034
- - add sse example
2035
-
2036
- - d0e8a1e: - fix: fix duplicate messages on regenerate
2037
- - @copilotkit/shared@1.8.5
2038
-
2039
- ## 1.8.5-next.5
2040
-
2041
- ### Patch Changes
2042
-
2043
- - c0d3261: - full AWP support
2044
-
2045
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2046
- - refactor: address linter issues with the new pages
2047
-
2048
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2049
- - Merge branch 'mme/acp' into mme/mastra
2050
- - add sse example
2051
- - Create small-turkeys-agree.md
2052
- - upgrade AWP
2053
- - Merge branch 'mme/mastra' of github.com:CopilotKit/CopilotKit into mme/mastra
2054
- - make agents a dict
2055
- - update docs
2056
- - send tools
2057
- - update to latest packages
2058
- - fix problem where state sync are preventing tool calls
2059
- - set possibly undefined toolCalls to an empty array
2060
- - fix missing tool call ids
2061
-
2062
- - c0d3261: - add AWP support
2063
- - make it work
2064
- - update docs
2065
- - refactor: move UI files to be normal NextJS pages and update generation
2066
-
2067
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2068
- - refactor: address linter issues with the new pages
2069
-
2070
- Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
2071
- - Merge branch 'mme/acp' into mme/mastra
2072
- - add sse example
2073
- - @copilotkit/shared@1.8.5-next.5
2074
-
2075
- ## 1.8.5-next.4
2076
-
2077
- ### Patch Changes
2078
-
2079
- - 76d9ef9: - fix: handle langgraph client specific errors when running lgc stream
2080
- - @copilotkit/shared@1.8.5-next.4
2081
-
2082
- ## 1.8.5-next.3
2083
-
2084
- ### Patch Changes
2085
-
2086
- - 77a7457: - feat: Add Model Context Protocol (MCP) support
2087
- - @copilotkit/shared@1.8.5-next.3
2088
-
2089
- ## 1.8.5-next.2
2090
-
2091
- ### Patch Changes
2092
-
2093
- - @copilotkit/shared@1.8.5-next.2
2094
-
2095
- ## 1.8.5-next.1
2096
-
2097
- ### Patch Changes
2098
-
2099
- - d0e8a1e: - fix: fix duplicate messages on regenerate
2100
- - @copilotkit/shared@1.8.5-next.1
2101
-
2102
- ## 1.8.5-next.0
2103
-
2104
- ### Patch Changes
2105
-
2106
- - @copilotkit/shared@1.8.5-next.0
2107
-
2108
- ## 1.8.4
2109
-
2110
- ### Patch Changes
2111
-
2112
- - e652aac: - feat: add support for langgraph config schema
2113
- - f363760: - fix: when unable to find specified agent, show what's available
2114
- - Updated dependencies [f363760]
2115
- - @copilotkit/shared@1.8.4
2116
-
2117
- ## 1.8.4-next.4
2118
-
2119
- ### Patch Changes
2120
-
2121
- - @copilotkit/shared@1.8.4-next.4
2122
-
2123
- ## 1.8.4-next.3
2124
-
2125
- ### Patch Changes
2126
-
2127
- - e652aac: - feat: add support for langgraph config schema
2128
- - @copilotkit/shared@1.8.4-next.3
2129
-
2130
- ## 1.8.4-next.2
2131
-
2132
- ### Patch Changes
2133
-
2134
- - @copilotkit/shared@1.8.4-next.2
2135
-
2136
- ## 1.8.4-next.1
2137
-
2138
- ### Patch Changes
2139
-
2140
- - f363760: - fix: when unable to find specified agent, show what's available
2141
- - Updated dependencies [f363760]
2142
- - @copilotkit/shared@1.8.4-next.1
2143
-
2144
- ## 1.8.4-next.0
2145
-
2146
- ### Patch Changes
2147
-
2148
- - @copilotkit/shared@1.8.4-next.0
2149
-
2150
- ## 1.8.3
2151
-
2152
- ### Patch Changes
2153
-
2154
- - @copilotkit/shared@1.8.3
2155
-
2156
- ## 1.8.3-next.0
2157
-
2158
- ### Patch Changes
2159
-
2160
- - @copilotkit/shared@1.8.3-next.0
2161
-
2162
- ## 1.8.2-next.3
2163
-
2164
- ### Patch Changes
2165
-
2166
- - @copilotkit/shared@1.8.2-next.3
2167
-
2168
- ## 1.8.2-next.2
2169
-
2170
- ### Patch Changes
2171
-
2172
- - 4eedf97: - fix: handle failure to fetch langgraph schema
2173
- - @copilotkit/shared@1.8.2-next.2
2174
-
2175
- ## 1.8.2-next.1
2176
-
2177
- ### Patch Changes
2178
-
2179
- - e95bb0e: - fix: clarify difference between lgp endpoints to fastapi endpoints
2180
- - @copilotkit/shared@1.8.2-next.1
2181
-
2182
- ## 1.8.2-next.0
2183
-
2184
- ### Patch Changes
2185
-
2186
- - @copilotkit/shared@1.8.2-next.0
2187
-
2188
- ## 1.8.1
2189
-
2190
- ### Patch Changes
2191
-
2192
- - @copilotkit/shared@1.8.1
2193
-
2194
- ## 1.8.1-next.1
2195
-
2196
- ### Patch Changes
2197
-
2198
- - @copilotkit/shared@1.8.1-next.1
2199
-
2200
- ## 1.8.1-next.0
2201
-
2202
- ### Patch Changes
2203
-
2204
- - @copilotkit/shared@1.8.1-next.0
2205
-
2206
- ## 1.8.0
2207
-
2208
- ### Patch Changes
2209
-
2210
- - a16757a: - fix: re-enable runtime actions when remote endpoint is set
2211
- - @copilotkit/shared@1.8.0
2212
-
2213
- ## 1.8.0-next.8
2214
-
2215
- ### Patch Changes
2216
-
2217
- - @copilotkit/shared@1.8.0-next.8
2218
-
2219
- ## 1.8.0-next.7
2220
-
2221
- ### Patch Changes
2222
-
2223
- - @copilotkit/shared@1.8.0-next.7
2224
-
2225
- ## 1.8.0-next.6
2226
-
2227
- ### Patch Changes
2228
-
2229
- - @copilotkit/shared@1.8.0-next.6
2230
-
2231
- ## 1.8.0-next.5
2232
-
2233
- ### Patch Changes
2234
-
2235
- - @copilotkit/shared@1.8.0-next.5
2236
-
2237
- ## 1.8.0-next.4
2238
-
2239
- ### Patch Changes
2240
-
2241
- - @copilotkit/shared@1.8.0-next.4
2242
-
2243
- ## 1.8.0-next.3
2244
-
2245
- ### Patch Changes
2246
-
2247
- - @copilotkit/shared@1.8.0-next.3
2248
-
2249
- ## 1.7.2-next.2
2250
-
2251
- ### Patch Changes
2252
-
2253
- - @copilotkit/shared@1.7.2-next.2
2254
-
2255
- ## 1.7.2-next.1
2256
-
2257
- ### Patch Changes
2258
-
2259
- - @copilotkit/shared@1.7.2-next.1
2260
-
2261
- ## 1.7.2-next.0
2262
-
2263
- ### Patch Changes
2264
-
2265
- - a16757a: - fix: re-enable runtime actions when remote endpoint is set
2266
- - @copilotkit/shared@1.7.2-next.0
2267
-
2268
- ## 1.7.1
2269
-
2270
- ### Patch Changes
2271
-
2272
- - 261b2be: - simplifies interface + adds o11y in agents
2273
- - @copilotkit/shared@1.7.1
2274
-
2275
- ## 1.7.1-next.0
2276
-
2277
- ### Patch Changes
2278
-
2279
- - 261b2be: - simplifies interface + adds o11y in agents
2280
- - @copilotkit/shared@1.7.1-next.0
2281
-
2282
- ## 1.7.0
2283
-
2284
- ### Minor Changes
2285
-
2286
- - 082db7a: - CrewAI support
2287
-
2288
- ### Patch Changes
2289
-
2290
- - 082db7a: - Added RemoteAgentAdapter and implemented CopilotKit (protocol & events).
2291
- - Integrated CrewAI (with a prototype, HITL, event system, and chat/demo tweaks).
2292
- - Updated docs and cleaned up code (fixing stdout issues, restricting Python version, and streamlining demos).
2293
- - 1e934e4: - feat(runtime): Add LangFuse logging integration
2294
- - @copilotkit/shared@1.7.0
2295
-
2296
- ## 1.7.0-next.1
2297
-
2298
- ### Patch Changes
2299
-
2300
- - 1e934e4: - feat(runtime): Add LangFuse logging integration
2301
- - @copilotkit/shared@1.7.0-next.1
2302
-
2303
- ## 1.7.0-next.0
2304
-
2305
- ### Minor Changes
2306
-
2307
- - 082db7a: - CrewAI support
2308
-
2309
- ### Patch Changes
2310
-
2311
- - 082db7a: - Added RemoteAgentAdapter and implemented CopilotKit (protocol & events).
2312
- - Integrated CrewAI (with a prototype, HITL, event system, and chat/demo tweaks).
2313
- - Updated docs and cleaned up code (fixing stdout issues, restricting Python version, and streamlining demos).
2314
- - @copilotkit/shared@1.7.0-next.0
2315
-
2316
- ## 1.6.0
2317
-
2318
- ### Minor Changes
2319
-
2320
- - fea916f: - feat: support input and output schema of langgraph
2321
- - docs: add input output schema docs
2322
- - 7d061d9: - feat(configurable): execute langgraph with user config
2323
-
2324
- ### Patch Changes
2325
-
2326
- - 543f703: - fix: refrain from processing same tool end several times
2327
- - fix: do not register runtime set action when there are remote endpoints
2328
- - 090203d: - fix: use tryMap method to filter out possibly invalid items
2329
- - 1bb9ca2: - fix(coagents): don't fail when LangSmith API key is missing
2330
- - fix(coagents): don't check for langsmithApiKey in resolveEndpointType
2331
- - 4ddb6d2: - fix: add class validator to dependencies
2332
- - d07f49c: - fix(runtime): fix execution of runtime set backend action handlers
2333
- - 45a3e10: - feat: support latest openai api
2334
- - chore: update all openai dependencies to use latest
2335
- - feat: update adapters using openai API
2336
- - 68f7b65: - handle parsing in fail-safe fashion
2337
- - Updated dependencies [090203d]
2338
- - @copilotkit/shared@1.6.0
2339
-
2340
- ## 1.6.0-next.12
2341
-
2342
- ### Patch Changes
2343
-
2344
- - 1bb9ca2: - fix(coagents): don't fail when LangSmith API key is missing
2345
- - fix(coagents): don't check for langsmithApiKey in resolveEndpointType
2346
- - @copilotkit/shared@1.6.0-next.12
2347
-
2348
- ## 1.6.0-next.11
2349
-
2350
- ### Patch Changes
2351
-
2352
- - @copilotkit/shared@1.6.0-next.11
2353
-
2354
- ## 1.6.0-next.10
2355
-
2356
- ### Patch Changes
2357
-
2358
- - 543f703: - fix: refrain from processing same tool end several times
2359
- - fix: do not register runtime set action when there are remote endpoints
2360
- - @copilotkit/shared@1.6.0-next.10
2361
-
2362
- ## 1.6.0-next.9
2363
-
2364
- ### Patch Changes
2365
-
2366
- - d07f49c: - fix(runtime): fix execution of runtime set backend action handlers
2367
- - @copilotkit/shared@1.6.0-next.9
2368
-
2369
- ## 1.6.0-next.8
2370
-
2371
- ### Minor Changes
2372
-
2373
- - fea916f: - feat: support input and output schema of langgraph
2374
- - docs: add input output schema docs
2375
-
2376
- ### Patch Changes
2377
-
2378
- - @copilotkit/shared@1.6.0-next.8
2379
-
2380
- ## 1.6.0-next.7
2381
-
2382
- ### Patch Changes
2383
-
2384
- - @copilotkit/shared@1.6.0-next.7
2385
-
2386
- ## 1.6.0-next.6
2387
-
2388
- ### Patch Changes
2389
-
2390
- - 45a3e10: - feat: support latest openai api
2391
- - chore: update all openai dependencies to use latest
2392
- - feat: update adapters using openai API
2393
- - @copilotkit/shared@1.6.0-next.6
2394
-
2395
- ## 1.6.0-next.5
2396
-
2397
- ### Patch Changes
2398
-
2399
- - 090203d: - fix: use tryMap method to filter out possibly invalid items
2400
- - Updated dependencies [090203d]
2401
- - @copilotkit/shared@1.6.0-next.5
2402
-
2403
- ## 1.6.0-next.4
2404
-
2405
- ### Patch Changes
2406
-
2407
- - 68f7b65: - handle parsing in fail-safe fashion
2408
- - @copilotkit/shared@1.6.0-next.4
2409
-
2410
- ## 1.6.0-next.3
2411
-
2412
- ### Patch Changes
2413
-
2414
- - 4ddb6d2: - fix: add class validator to dependencies
2415
- - @copilotkit/shared@1.6.0-next.3
2416
-
2417
- ## 1.6.0-next.2
2418
-
2419
- ### Patch Changes
2420
-
2421
- - @copilotkit/shared@1.6.0-next.2
2422
-
2423
- ## 1.6.0-next.1
2424
-
2425
- ### Patch Changes
2426
-
2427
- - @copilotkit/shared@1.6.0-next.1
2428
-
2429
- ## 1.6.0-next.0
2430
-
2431
- ### Minor Changes
2432
-
2433
- - 7d061d9: - feat(configurable): execute langgraph with user config
2434
-
2435
- ### Patch Changes
2436
-
2437
- - @copilotkit/shared@1.6.0-next.0
2438
-
2439
- ## 1.5.20
2440
-
2441
- ### Patch Changes
2442
-
2443
- - Updated dependencies [51f0d66]
2444
- - @copilotkit/shared@1.5.20
2445
-
2446
- ## 1.5.20-next.0
2447
-
2448
- ### Patch Changes
2449
-
2450
- - Updated dependencies [51f0d66]
2451
- - @copilotkit/shared@1.5.20-next.0
2452
-
2453
- ## 1.5.19
2454
-
2455
- ### Patch Changes
2456
-
2457
- - Updated dependencies [0dd1ab9]
2458
- - @copilotkit/shared@1.5.19
2459
-
2460
- ## 1.5.19-next.1
2461
-
2462
- ### Patch Changes
2463
-
2464
- - Updated dependencies [0dd1ab9]
2465
- - @copilotkit/shared@1.5.19-next.1
2466
-
2467
- ## 1.5.19-next.0
2468
-
2469
- ### Patch Changes
2470
-
2471
- - @copilotkit/shared@1.5.19-next.0
2472
-
2473
- ## 1.5.18
2474
-
2475
- ### Patch Changes
2476
-
2477
- - d47cd26: - fix: detect and alert on version mismatch
2478
- - a6e46a9: - fix: use langgraph metadata to get node name
2479
- - 38d3ac2: - fix: add additional info the our error messages
2480
- - Updated dependencies [d47cd26]
2481
- - Updated dependencies [f77a7b9]
2482
- - Updated dependencies [38d3ac2]
2483
- - @copilotkit/shared@1.5.18
2484
-
2485
- ## 1.5.18-next.3
2486
-
2487
- ### Patch Changes
2488
-
2489
- - Updated dependencies [f77a7b9]
2490
- - @copilotkit/shared@1.5.18-next.3
2491
-
2492
- ## 1.5.18-next.2
2493
-
2494
- ### Patch Changes
2495
-
2496
- - 38d3ac2: - fix: add additional info the our error messages
2497
- - Updated dependencies [38d3ac2]
2498
- - @copilotkit/shared@1.5.18-next.2
2499
-
2500
- ## 1.5.18-next.1
2501
-
2502
- ### Patch Changes
2503
-
2504
- - a6e46a9: - fix: use langgraph metadata to get node name
2505
- - @copilotkit/shared@1.5.18-next.1
2506
-
2507
- ## 1.5.18-next.0
2508
-
2509
- ### Patch Changes
2510
-
2511
- - d47cd26: - fix: detect and alert on version mismatch
2512
- - Updated dependencies [d47cd26]
2513
- - @copilotkit/shared@1.5.18-next.0
2514
-
2515
- ## 1.5.17
2516
-
2517
- ### Patch Changes
2518
-
2519
- - 1fc3902: - Revert "fix: detect and alert on version mismatch (#1333)"
2520
-
2521
- This reverts commit 48b7c7b1bd48ced82ffb9a00d6eddc1f7581e0c1.
2522
-
2523
- - Updated dependencies [1fc3902]
2524
- - @copilotkit/shared@1.5.17
2525
-
2526
- ## 1.5.17-next.0
2527
-
2528
- ### Patch Changes
2529
-
2530
- - 1fc3902: - Revert "fix: detect and alert on version mismatch (#1333)"
2531
-
2532
- This reverts commit 48b7c7b1bd48ced82ffb9a00d6eddc1f7581e0c1.
2533
-
2534
- - Updated dependencies [1fc3902]
2535
- - @copilotkit/shared@1.5.17-next.0
2536
-
2537
- ## 1.5.16
2538
-
2539
- ### Patch Changes
2540
-
2541
- - 9be85f1: - fix: use latest langchain packages
2542
- - 48b7c7b: - fix: detect and alert on version mismatch
2543
- - Updated dependencies [48b7c7b]
2544
- - @copilotkit/shared@1.5.16
2545
-
2546
- ## 1.5.16-next.2
2547
-
2548
- ### Patch Changes
2549
-
2550
- - 9be85f1: - fix: use latest langchain packages
2551
- - @copilotkit/shared@1.5.16-next.2
2552
-
2553
- ## 1.5.16-next.1
2554
-
2555
- ### Patch Changes
2556
-
2557
- - 48b7c7b: - fix: detect and alert on version mismatch
2558
- - Updated dependencies [48b7c7b]
2559
- - @copilotkit/shared@1.5.16-next.1
2560
-
2561
- ## 1.5.16-next.0
2562
-
2563
- ### Patch Changes
2564
-
2565
- - @copilotkit/shared@1.5.16-next.0
2566
-
2567
- ## 1.5.15
2568
-
2569
- ### Patch Changes
2570
-
2571
- - 06f9f35: - feat(interrupt): add copilotkit interrupt as messages with copilotkit interrupt convenience fn
2572
- - chore(deps): update dependencies for demos
2573
- - chore(interrupt-as-message): add e2e test for interrupt as message
2574
- - 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
2575
- - chore(interrupt): add e2e test to interrupt functionality
2576
- - feat(interrupt): add support for multiple interrupts and conditions
2577
- - 68bdbcd: - fix(runtime): enable multi-agent flows while preventing recursive self-calls
2578
- - c14f9db: - add headers handling to other LangGraphClients
2579
- - eb315bd: - fix: allow empty langsmith api key
2580
- - Updated dependencies [7b3141d]
2581
- - @copilotkit/shared@1.5.15
2582
-
2583
- ## 1.5.15-next.8
2584
-
2585
- ### Patch Changes
2586
-
2587
- - 06f9f35: - feat(interrupt): add copilotkit interrupt as messages with copilotkit interrupt convenience fn
2588
- - chore(deps): update dependencies for demos
2589
- - chore(interrupt-as-message): add e2e test for interrupt as message
2590
- - @copilotkit/shared@1.5.15-next.8
2591
-
2592
- ## 1.5.15-next.7
2593
-
2594
- ### Patch Changes
2595
-
2596
- - 68bdbcd: - fix(runtime): enable multi-agent flows while preventing recursive self-calls
2597
- - @copilotkit/shared@1.5.15-next.7
2598
-
2599
- ## 1.5.15-next.6
2600
-
2601
- ### Patch Changes
2602
-
2603
- - @copilotkit/shared@1.5.15-next.6
2604
-
2605
- ## 1.5.15-next.5
2606
-
2607
- ### Patch Changes
2608
-
2609
- - @copilotkit/shared@1.5.15-next.5
2610
-
2611
- ## 1.5.15-next.4
2612
-
2613
- ### Patch Changes
2614
-
2615
- - 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
2616
- - chore(interrupt): add e2e test to interrupt functionality
2617
- - feat(interrupt): add support for multiple interrupts and conditions
2618
- - Updated dependencies [7b3141d]
2619
- - @copilotkit/shared@1.5.15-next.4
2620
-
2621
- ## 1.5.15-next.3
2622
-
2623
- ### Patch Changes
2624
-
2625
- - c14f9db: - add headers handling to other LangGraphClients
2626
- - @copilotkit/shared@1.5.15-next.3
2627
-
2628
- ## 1.5.15-next.2
2629
-
2630
- ### Patch Changes
2631
-
2632
- - eb315bd: - fix: allow empty langsmith api key
2633
- - @copilotkit/shared@1.5.15-next.2
2634
-
2635
- ## 1.5.15-next.1
2636
-
2637
- ### Patch Changes
2638
-
2639
- - @copilotkit/shared@1.5.15-next.1
2640
-
2641
- ## 1.5.15-next.0
2642
-
2643
- ### Patch Changes
2644
-
2645
- - @copilotkit/shared@1.5.15-next.0
2646
-
2647
- ## 1.5.14
2648
-
2649
- ### Patch Changes
2650
-
2651
- - Updated dependencies [0061f65]
2652
- - @copilotkit/shared@1.5.14
2653
-
2654
- ## 1.5.14-next.0
2655
-
2656
- ### Patch Changes
2657
-
2658
- - Updated dependencies [0061f65]
2659
- - @copilotkit/shared@1.5.14-next.0
2660
-
2661
- ## 1.5.13
2662
-
2663
- ### Patch Changes
2664
-
2665
- - 8271438: silence langgraph platform error
2666
- - @copilotkit/shared@1.5.13
2667
-
2668
- ## 1.5.13-next.0
2669
-
2670
- ### Patch Changes
2671
-
2672
- - 8271438: silence langgraph platform error
2673
- - @copilotkit/shared@1.5.13-next.0
2674
-
2675
- ## 1.5.12
2676
-
2677
- ### Patch Changes
2678
-
2679
- - 768b3a5: - chore: add documentation for empty llm adapter
2680
- - fix: throw error when empty adapter is misused
2681
- - a2129f4: - fix(streaming): end streaming on error to enable continuity of chat after failed tool call
2682
- - 926499b: - Load the previous state of an agent if `threadId` is provided to CopilotKit, including all messages
2683
- - 59de133: - fix: rename ExperimentalEmptyAdapter to EmptyAdapter
2684
- - 6136a57: - fix(errors): add custom error classes to better describe library errors
2685
- - fix(errors): use new errors in error handling
2686
- - chore: add documentation and links to respective errors
2687
- - Updated dependencies [6136a57]
2688
- - @copilotkit/shared@1.5.12
2689
-
2690
- ## 1.5.12-next.7
2691
-
2692
- ### Patch Changes
2693
-
2694
- - 926499b: - Load the previous state of an agent if `threadId` is provided to CopilotKit, including all messages
2695
- - @copilotkit/shared@1.5.12-next.7
2696
-
2697
- ## 1.5.12-next.6
2698
-
2699
- ### Patch Changes
2700
-
2701
- - 6136a57: - fix(errors): add custom error classes to better describe library errors
2702
- - fix(errors): use new errors in error handling
2703
- - chore: add documentation and links to respective errors
2704
- - Updated dependencies [6136a57]
2705
- - @copilotkit/shared@1.5.12-next.6
2706
-
2707
- ## 1.5.12-next.5
2708
-
2709
- ### Patch Changes
2710
-
2711
- - 59de133: - fix: rename ExperimentalEmptyAdapter to EmptyAdapter
2712
- - @copilotkit/shared@1.5.12-next.5
2713
-
2714
- ## 1.5.12-next.4
2715
-
2716
- ### Patch Changes
2717
-
2718
- - 768b3a5: - chore: add documentation for empty llm adapter
2719
- - fix: throw error when empty adapter is misused
2720
- - @copilotkit/shared@1.5.12-next.4
2721
-
2722
- ## 1.5.12-next.3
2723
-
2724
- ### Patch Changes
2725
-
2726
- - @copilotkit/shared@1.5.12-next.3
2727
-
2728
- ## 1.5.12-next.2
2729
-
2730
- ### Patch Changes
2731
-
2732
- - @copilotkit/shared@1.5.12-next.2
2733
-
2734
- ## 1.5.12-next.1
2735
-
2736
- ### Patch Changes
2737
-
2738
- - a2129f4: - fix(streaming): end streaming on error to enable continuity of chat after failed tool call
2739
- - @copilotkit/shared@1.5.12-next.1
2740
-
2741
- ## 1.5.12-next.0
2742
-
2743
- ### Patch Changes
2744
-
2745
- - @copilotkit/shared@1.5.12-next.0
2746
-
2747
- ## 1.5.11
2748
-
2749
- ### Patch Changes
2750
-
2751
- - 72f9e58: test release notes
2752
- - 716bd5c: test changelog
2753
- - aecb6f4: Fix build script
2754
- - a35d447: test changelog
2755
- - 0a2e07e: Test changelog
2756
- - 8166ac6: Test release notes
2757
- - @copilotkit/shared@1.5.11
2758
-
2759
- ## 1.5.11-next.0
2760
-
2761
- ### Patch Changes
2762
-
2763
- - 72f9e58: test release notes
2764
- - 716bd5c: test changelog
2765
- - aecb6f4: Fix build script
2766
- - a35d447: test changelog
2767
- - 0a2e07e: Test changelog
2768
- - 8166ac6: Test release notes
2769
- - @copilotkit/shared@1.5.11-next.0
2770
-
2771
- ## 1.5.10
2772
-
2773
- ### Patch Changes
2774
-
2775
- - 72f9e58: test release notes
2776
- - 716bd5c: test changelog
2777
- - aecb6f4: Fix build script
2778
- - a35d447: test changelog
2779
- - 8166ac6: Test release notes
2780
- - @copilotkit/shared@1.5.10
2781
-
2782
- ## 1.5.10-next.0
2783
-
2784
- ### Patch Changes
2785
-
2786
- - 72f9e58: test release notes
2787
- - 716bd5c: test changelog
2788
- - aecb6f4: Fix build script
2789
- - a35d447: test changelog
2790
- - 8166ac6: Test release notes
2791
- - @copilotkit/shared@1.5.10-next.0
2792
-
2793
- ## 1.5.9
2794
-
2795
- ### Patch Changes
2796
-
2797
- - 72f9e58: test release notes
2798
- - 716bd5c: test changelog
2799
- - a35d447: test changelog
2800
- - 8166ac6: Test release notes
2801
- - @copilotkit/shared@1.5.9
2802
-
2803
- ## 1.5.8
2804
-
2805
- ### Patch Changes
2806
-
2807
- - 72f9e58: test release notes
2808
- - a35d447: test changelog
2809
- - 8166ac6: Test release notes
2810
- - @copilotkit/shared@1.5.8
2811
-
2812
- ## 1.5.6-next.0
2813
-
2814
- ### Patch Changes
2815
-
2816
- - a35d447: test changelog
2817
- - @copilotkit/shared@1.5.6-next.0
2818
-
2819
- ## 1.5.5-next.5
2820
-
2821
- ### Patch Changes
2822
-
2823
- - @copilotkit/shared@1.5.5-next.5
2824
-
2825
- ## 1.5.5-next.3
2826
-
2827
- ### Patch Changes
2828
-
2829
- - @copilotkit/shared@1.5.5-next.3
2830
-
2831
- ## 1.5.5-next.2
2832
-
2833
- ### Patch Changes
2834
-
2835
- - 72f9e58: test release notes
2836
- - 8166ac6: Test release notes
2837
- - @copilotkit/shared@1.5.5-next.2
2838
-
2839
- ## 1.5.4
2840
-
2841
- ### Patch Changes
2842
-
2843
- - Test changelog
2844
- - @copilotkit/shared@1.5.4
2845
-
2846
- ## 1.5.3
2847
-
2848
- ### Patch Changes
2849
-
2850
- - 4511149: Test release notes
2851
- - @copilotkit/shared@1.5.3
2852
-
2853
- ## 1.5.2
2854
-
2855
- ### Patch Changes
2856
-
2857
- - b0192c1: This is a test release
2858
- - @copilotkit/shared@1.5.2
2859
-
2860
- ## 1.5.1
2861
-
2862
- ### Patch Changes
2863
-
2864
- - 5c01e9e: test prerelease #4
2865
- - da280ed: Test prerelease script
2866
- - 27e42d7: testing a prerelease
2867
- - 05240a9: test pre #2
2868
- - 33218fe: test prerelease #3
2869
- - 03f3d6f: Test next prerelease
2870
- - 649ebcc: - fix: add warning when using agents that are not available on agent related hooks
2871
- - 6dfa0d2: - feat: add temperature parameter support for LLM completions
2872
- - Updated dependencies [5c01e9e]
2873
- - Updated dependencies [da280ed]
2874
- - Updated dependencies [27e42d7]
2875
- - Updated dependencies [05240a9]
2876
- - Updated dependencies [33218fe]
2877
- - Updated dependencies [03f3d6f]
2878
- - @copilotkit/shared@1.5.1
2879
-
2880
- ## 1.5.1-next.3
2881
-
2882
- ### Patch Changes
2883
-
2884
- - 33218fe: test prerelease #3
2885
- - Updated dependencies [33218fe]
2886
- - @copilotkit/shared@1.5.1-next.3
2887
-
2888
- ## 1.5.1-next.2
2889
-
2890
- ### Patch Changes
2891
-
2892
- - da280ed: Test prerelease script
2893
- - 649ebcc: - fix: add warning when using agents that are not available on agent related hooks
2894
- - Updated dependencies [da280ed]
2895
- - @copilotkit/shared@1.5.1-next.2
2896
-
2897
- ## 1.5.1-next.1
2898
-
2899
- ### Patch Changes
2900
-
2901
- - 03f3d6f: Test next prerelease
2902
- - Updated dependencies [03f3d6f]
2903
- - @copilotkit/shared@1.5.1-next.1
2904
-
2905
- ## 1.5.1-next.0
2906
-
2907
- ### Patch Changes
2908
-
2909
- - 27e42d7: testing a prerelease
2910
- - 6dfa0d2: - feat: add temperature parameter support for LLM completions
2911
- - Updated dependencies [27e42d7]
2912
- - @copilotkit/shared@1.5.1-next.0
2913
-
2914
- ## 1.5.0
2915
-
2916
- ### Minor Changes
2917
-
2918
- - 1b47092: Synchronize LangGraph messages with CopilotKit
2919
-
2920
- ### Patch Changes
2921
-
2922
- - 1b47092: CoAgents v0.3 prerelease
2923
- - Updated dependencies [1b47092]
2924
- - Updated dependencies [1b47092]
2925
- - @copilotkit/shared@1.5.0
2926
-
2927
- ## 1.5.0-coagents-v0-3.0
2928
-
2929
- ### Minor Changes
2930
-
2931
- - Synchronize LangGraph messages with CopilotKit
2932
-
2933
- ### Patch Changes
2934
-
2935
- - e66bce4: CoAgents v0.3 prerelease
2936
- - Updated dependencies
2937
- - Updated dependencies [e66bce4]
2938
- - @copilotkit/shared@1.5.0-coagents-v0-3.0
2939
-
2940
- ## 1.4.8
2941
-
2942
- ### Patch Changes
2943
-
2944
- - - Better error handling
2945
- - Introduce new "EmptyLLMAdapter" for when using CoAgents
2946
- - Improve dev console help options
2947
- - Allow CopilotKit remote endpoint without agents
2948
- - 989f159: - fix: allow CopilotKit Remote Endpoint without agents
2949
- - Apply suggestions from code review
2950
- - Updated dependencies
2951
- - @copilotkit/shared@1.4.8
2952
-
2953
- ## 1.4.8-next.0
2954
-
2955
- ### Patch Changes
2956
-
2957
- - @copilotkit/shared@1.4.8-next.0
2958
-
2959
- ## 1.4.7
2960
-
2961
- ### Patch Changes
2962
-
2963
- - Fix broken build script before release
2964
- - Updated dependencies
2965
- - @copilotkit/shared@1.4.7
2966
-
2967
- ## 1.4.6
2968
-
2969
- ### Patch Changes
2970
-
2971
- - .
2972
-
2973
- ## 1.4.5
2974
-
2975
- ### Patch Changes
2976
-
2977
- - testing release workflow
2978
- - Updated dependencies
2979
- - @copilotkit/shared@1.4.5
2980
-
2981
- ## 1.4.5-next.0
2982
-
2983
- ### Patch Changes
2984
-
2985
- - testing release workflow
2986
- - Updated dependencies
2987
- - @copilotkit/shared@1.4.5-next.0
2988
-
2989
- ## 1.4.4
2990
-
2991
- ### Patch Changes
2992
-
2993
- - 665deab: test prerelease
2994
- - 57a6012: test next prerelease automation
2995
- - 7cfc2e7: test prerelease stuff
2996
- - af36f1a: - feat(runtime): readme update
2997
- - @copilotkit/shared@1.4.4
2998
-
2999
- ## 1.4.4-next.4
3000
-
3001
- ### Patch Changes
3002
-
3003
- - 57a6012: test next prerelease automation
3004
- - @copilotkit/shared@1.4.4-next.4
3005
-
3006
- ## 1.4.4-next.3
3007
-
3008
- ### Patch Changes
3009
-
3010
- - 7cfc2e7: test prerelease stuff
3011
- - @copilotkit/shared@1.4.4-next.3
3012
-
3013
- ## 1.4.4-next.2
3014
-
3015
- ### Patch Changes
3016
-
3017
- - 665deab: test prerelease
3018
- - @copilotkit/shared@1.4.4-next.2
3019
-
3020
- ## 1.4.4-next.1
3021
-
3022
- ### Patch Changes
3023
-
3024
- - af36f1a: - feat(runtime): readme update
3025
- - @copilotkit/shared@1.4.4-next.1
3026
-
3027
- ## 1.4.4-next.0
3028
-
3029
- ### Patch Changes
3030
-
3031
- - @copilotkit/shared@1.4.4-next.0
3032
-
3033
- ## 1.4.3
3034
-
3035
- ### Patch Changes
3036
-
3037
- - c296282: - Better error surfacing when using LangGraph Platform streaming
3038
- - Ensure state is immediately set without using flushSync
3039
- - - Better error surfacing when using LangGraph Platform streaming
3040
- - Ensure state is immediately set without using flushSync
3041
- - Updated dependencies [c296282]
3042
- - Updated dependencies
3043
- - @copilotkit/shared@1.4.3
3044
-
3045
- ## 1.4.3-pre.0
3046
-
3047
- ### Patch Changes
3048
-
3049
- - - Better error surfacing when using LangGraph Platform streaming
3050
- - Ensure state is immediately set without using flushSync
3051
- - Updated dependencies
3052
- - @copilotkit/shared@1.4.3-pre.0
3053
-
3054
- ## 1.4.2
3055
-
3056
- ### Patch Changes
3057
-
3058
- - - Make sure agent state is set immediately (#1077)
3059
- - Support running an agent without messages (#1075)
3060
- - Updated dependencies
3061
- - @copilotkit/shared@1.4.2
3062
-
3063
- ## 1.4.1
3064
-
3065
- ### Patch Changes
3066
-
3067
- - 1721cbd: lower case copilotkit property
3068
- - 1721cbd: add zod conversion
3069
- - 8d0144f: bump
3070
- - 8d0144f: bump
3071
- - 8d0144f: bump
3072
- - e16d95e: New prerelease
3073
- - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
3074
- - CopilotKit Core:
3075
- - Improved error messages and overall logs
3076
- - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
3077
- - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
3078
- - Added Azure OpenAI integration
3079
- - Updated interfaces for better developer ergonomics
3080
-
3081
- CoAgents:
3082
- - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
3083
- - Support for LangGraph Platform in Remote Endpoints
3084
- - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
3085
- - Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
3086
- - Enhanced state management and message handling
3087
-
3088
- CopilotKid Back-end SDK:
3089
- - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
3090
-
3091
- - 8d0144f: bump
3092
- - 8d0144f: bump
3093
- - fef1b74: fix assistant message CSS and propagate actions to LG JS
3094
- - Updated dependencies [1721cbd]
3095
- - Updated dependencies [1721cbd]
3096
- - Updated dependencies [8d0144f]
3097
- - Updated dependencies [8d0144f]
3098
- - Updated dependencies [8d0144f]
3099
- - Updated dependencies [e16d95e]
3100
- - Updated dependencies [1721cbd]
3101
- - Updated dependencies
3102
- - Updated dependencies [8d0144f]
3103
- - Updated dependencies [8d0144f]
3104
- - Updated dependencies [fef1b74]
3105
- - @copilotkit/shared@1.4.1
3106
-
3107
- ## 1.4.1-pre.6
3108
-
3109
- ### Patch Changes
3110
-
3111
- - 1721cbd: lower case copilotkit property
3112
- - 1721cbd: add zod conversion
3113
- - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
3114
- - fix assistant message CSS and propagate actions to LG JS
3115
- - Updated dependencies [1721cbd]
3116
- - Updated dependencies [1721cbd]
3117
- - Updated dependencies [1721cbd]
3118
- - Updated dependencies
3119
- - @copilotkit/shared@1.4.1-pre.6
3120
-
3121
- ## 1.4.1-pre.5
3122
-
3123
- ### Patch Changes
3124
-
3125
- - bump
3126
- - Updated dependencies
3127
- - @copilotkit/shared@1.4.1-pre.5
3128
-
3129
- ## 1.4.1-pre.4
3130
-
3131
- ### Patch Changes
3132
-
3133
- - bump
3134
- - Updated dependencies
3135
- - @copilotkit/shared@1.4.1-pre.4
3136
-
3137
- ## 1.4.1-pre.3
3138
-
3139
- ### Patch Changes
3140
-
3141
- - bump
3142
- - Updated dependencies
3143
- - @copilotkit/shared@1.4.1-pre.3
3144
-
3145
- ## 1.4.1-pre.2
3146
-
3147
- ### Patch Changes
3148
-
3149
- - bump
3150
- - Updated dependencies
3151
- - @copilotkit/shared@1.4.1-pre.2
3152
-
3153
- ## 1.4.1-pre.1
3154
-
3155
- ### Patch Changes
3156
-
3157
- - bump
3158
- - Updated dependencies
3159
- - @copilotkit/shared@1.4.1-pre.1
3160
-
3161
- ## 1.4.1-pre.0
3162
-
3163
- ### Patch Changes
3164
-
3165
- - New prerelease
3166
- - Updated dependencies
3167
- - @copilotkit/shared@1.4.1-pre.0
3168
-
3169
- ## 1.4.0
3170
-
3171
- ### Minor Changes
3172
-
3173
- CopilotKit Core:
3174
-
3175
- - Improved error messages and overall logs
3176
- - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
3177
- - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
3178
- - Added Azure OpenAI integration
3179
- - Updated interfaces for better developer ergonomics
3180
-
3181
- CoAgents:
3182
-
3183
- - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
3184
- - Support for LangGraph Platform in Remote Endpoints
3185
- - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
3186
- - Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
3187
- - Enhanced state management and message handling
3188
-
3189
- CopilotKid Back-end SDK:
3190
-
3191
- - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
3192
-
3193
- ### Patch Changes
3194
-
3195
- - f6fab28: update tsup config
3196
- - f6fab28: update entry
3197
- - f6fab28: export langchain module
3198
- - 8a77944: Improve LangSmith support
3199
- - f6fab28: Ensure intermediate state config is sent as snake case
3200
- - f6fab28: update entry in tsup config
3201
- - 8a77944: Ensure the last message is sent to LangSmith
3202
- - a5efccd: Revert rxjs changes
3203
- - f6fab28: update entry
3204
- - f6fab28: Update exports
3205
- - f6fab28: Update exports
3206
- - 332d744: Add support for Azure OpenAI
3207
- - f6fab28: Export LangGraph functions
3208
- - f6fab28: Update lockfile
3209
- - Updated dependencies [f6fab28]
3210
- - Updated dependencies [f6fab28]
3211
- - Updated dependencies
3212
- - Updated dependencies [f6fab28]
3213
- - Updated dependencies [8a77944]
3214
- - Updated dependencies [f6fab28]
3215
- - Updated dependencies [f6fab28]
3216
- - Updated dependencies [8a77944]
3217
- - Updated dependencies [a5efccd]
3218
- - Updated dependencies [f6fab28]
3219
- - Updated dependencies [f6fab28]
3220
- - Updated dependencies [f6fab28]
3221
- - Updated dependencies [332d744]
3222
- - Updated dependencies [f6fab28]
3223
- - Updated dependencies [f6fab28]
3224
- - @copilotkit/shared@1.4.0
3225
-
3226
- ## 1.3.16-mme-revert-rxjs-changes.10
3227
-
3228
- ### Patch Changes
3229
-
3230
- - f6fab28: update tsup config
3231
- - f6fab28: update entry
3232
- - f6fab28: export langchain module
3233
- - 8a77944: Improve LangSmith support
3234
- - f6fab28: Ensure intermediate state config is sent as snake case
3235
- - f6fab28: update entry in tsup config
3236
- - 8a77944: Ensure the last message is sent to LangSmith
3237
- - Revert rxjs changes
3238
- - f6fab28: update entry
3239
- - f6fab28: Update exports
3240
- - f6fab28: Update exports
3241
- - 332d744: Add support for Azure OpenAI
3242
- - f6fab28: Export LangGraph functions
3243
- - f6fab28: Update lockfile
3244
- - Updated dependencies [f6fab28]
3245
- - Updated dependencies [f6fab28]
3246
- - Updated dependencies [f6fab28]
3247
- - Updated dependencies [8a77944]
3248
- - Updated dependencies [f6fab28]
3249
- - Updated dependencies [f6fab28]
3250
- - Updated dependencies [8a77944]
3251
- - Updated dependencies
3252
- - Updated dependencies [f6fab28]
3253
- - Updated dependencies [f6fab28]
3254
- - Updated dependencies [f6fab28]
3255
- - Updated dependencies [332d744]
3256
- - Updated dependencies [f6fab28]
3257
- - Updated dependencies [f6fab28]
3258
- - @copilotkit/shared@1.3.16-mme-revert-rxjs-changes.10
3259
-
3260
- ## 1.3.15
3261
-
3262
- ### Patch Changes
3263
-
3264
- - pass description for array and object action parameters in langchain adapter
3265
- - Updated dependencies
3266
- - @copilotkit/shared@1.3.15
3267
-
3268
- ## 1.3.14
3269
-
3270
- ### Patch Changes
3271
-
3272
- - Add data-test-id to some elements for testing
3273
- - Updated dependencies
3274
- - @copilotkit/shared@1.3.14
3275
-
3276
- ## 1.3.13
3277
-
3278
- ### Patch Changes
3279
-
3280
- - fix usage of one-at-a-time tool when called multiple times
3281
- - Updated dependencies
3282
- - @copilotkit/shared@1.3.13
3283
-
3284
- ## 1.3.12
3285
-
3286
- ### Patch Changes
3287
-
3288
- - - enable dynamic parameters in langchain adapter tool call
3289
- - fix unparsable action arguments causing tool call crashes
3290
- - Updated dependencies
3291
- - @copilotkit/shared@1.3.12
3292
-
3293
- ## 1.3.11
3294
-
3295
- ### Patch Changes
3296
-
3297
- - 08e8956: Fix duplicate messages
3298
- - Fix duplicate messages
3299
- - Updated dependencies [08e8956]
3300
- - Updated dependencies
3301
- - @copilotkit/shared@1.3.11
3302
-
3303
- ## 1.3.11-mme-fix-duplicate-messages.0
3304
-
3305
- ### Patch Changes
3306
-
3307
- - Fix duplicate messages
3308
- - Updated dependencies
3309
- - @copilotkit/shared@1.3.11-mme-fix-duplicate-messages.0
3310
-
3311
- ## 1.3.10
3312
-
3313
- ### Patch Changes
3314
-
3315
- - change how message chunk type is resolved (fixed langchain adapters)
3316
- - Updated dependencies
3317
- - @copilotkit/shared@1.3.10
3318
-
3319
- ## 1.3.9
3320
-
3321
- ### Patch Changes
3322
-
3323
- - Fix message id issues
3324
- - Updated dependencies
3325
- - @copilotkit/shared@1.3.9
3326
-
3327
- ## 1.3.8
3328
-
3329
- ### Patch Changes
3330
-
3331
- - fix textarea on multiple llm providers and memoize react ui context
3332
- - Updated dependencies
3333
- - @copilotkit/shared@1.3.8
3334
-
3335
- ## 1.3.7
3336
-
3337
- ### Patch Changes
3338
-
3339
- - Fix libraries for React 19 and Next.js 15 support
3340
- - Updated dependencies
3341
- - @copilotkit/shared@1.3.7
3342
-
3343
- ## 1.3.6
3344
-
3345
- ### Patch Changes
3346
-
3347
- - 1. Removes the usage of the `crypto` Node pacakge, instaed uses `uuid`. This ensures that non-Next.js React apps can use CopilotKit.
3348
- 2. Fixes Nest.js runtime docs
3349
-
3350
- - Updated dependencies
3351
- - @copilotkit/shared@1.3.6
3352
-
3353
- ## 1.3.5
3354
-
3355
- ### Patch Changes
3356
-
3357
- - Improve CoAgent state render
3358
- - Updated dependencies
3359
- - @copilotkit/shared@1.3.5
3360
-
3361
- ## 1.3.4
3362
-
3363
- ### Patch Changes
3364
-
3365
- - Add followUp property to useCopilotAction
3366
- - Updated dependencies
3367
- - @copilotkit/shared@1.3.4
3368
-
3369
- ## 1.3.3
3370
-
3371
- ### Patch Changes
3372
-
3373
- - Impvovements to error handling and CoAgent protocol
3374
- - Updated dependencies
3375
- - @copilotkit/shared@1.3.3
3376
-
3377
- ## 1.3.2
3378
-
3379
- ### Patch Changes
3380
-
3381
- - Features and bug fixes
3382
- - 30232c0: Ensure actions can be discovered on state change
3383
- - Updated dependencies
3384
- - Updated dependencies [30232c0]
3385
- - @copilotkit/shared@1.3.2
3386
-
3387
- ## 1.3.2-mme-discover-actions.0
3388
-
3389
- ### Patch Changes
3390
-
3391
- - Ensure actions can be discovered on state change
3392
- - Updated dependencies
3393
- - @copilotkit/shared@1.3.2-mme-discover-actions.0
3394
-
3395
- ## 1.3.1
3396
-
3397
- ### Patch Changes
3398
-
3399
- - Revert CSS injection
3400
- - Updated dependencies
3401
- - @copilotkit/shared@1.3.1
3402
-
3403
- ## 1.3.0
3404
-
3405
- ### Minor Changes
3406
-
3407
- - CoAgents and remote actions
3408
-
3409
- ### Patch Changes
3410
-
3411
- - 5b63f55: stream intermediate state
3412
- - b6fd3d8: Better message grouping
3413
- - 89420c6: Rename hooks and bugfixes
3414
- - b6e8824: useCoAgent/useCoAgentAction
3415
- - 91c35b9: useAgentState
3416
- - 00be203: Remote actions preview
3417
- - fb15f72: Reduce request size by skipping intermediate state
3418
- - 8ecc3e4: Fix useCoAgent start/stop bug
3419
- - Updated dependencies
3420
- - Updated dependencies [5b63f55]
3421
- - Updated dependencies [b6fd3d8]
3422
- - Updated dependencies [89420c6]
3423
- - Updated dependencies [b6e8824]
3424
- - Updated dependencies [91c35b9]
3425
- - Updated dependencies [00be203]
3426
- - Updated dependencies [fb15f72]
3427
- - Updated dependencies [8ecc3e4]
3428
- - @copilotkit/shared@1.3.0
3429
-
3430
- ## 1.2.1
3431
-
3432
- ### Patch Changes
3433
-
3434
- - inject minified css in bundle
3435
- - removes the need to import `styles.css` manually
3436
- - empty `styles.css` included in the build for backwards compatibility
3437
- - uses tsup's `injectStyles` with `postcss` to bundle and minify the CSS, then inject it as a style tag
3438
- - currently uses my fork of `tsup` where I added support for async function in `injectStyles` (must-have for postcss), a PR from my fork to the main library will follow shortly
3439
- - remove material-ui, and use `react-icons` for icons (same icons as before)
3440
- - remove unused `IncludedFilesPreview` component
3441
- - updated docs
3442
-
3443
- - Updated dependencies
3444
- - @copilotkit/shared@1.2.1
3445
-
3446
- ## 1.2.0
3447
-
3448
- ### Minor Changes
3449
-
3450
- - Fix errors related to crypto not being found, and other bug fixes
3451
-
3452
- ### Patch Changes
3453
-
3454
- - 638d51d: appendMessage fix 1
3455
- - faccbe1: state-abuse resistance for useCopilotChat
3456
- - b0cf700: remove unnecessary logging
3457
- - Updated dependencies
3458
- - Updated dependencies [638d51d]
3459
- - Updated dependencies [faccbe1]
3460
- - Updated dependencies [b0cf700]
3461
- - @copilotkit/shared@1.2.0
3462
-
3463
- ## 1.1.2
3464
-
3465
- ### Patch Changes
3466
-
3467
- - Pin headless-ui/react version to v2.1.1
3468
- - Updated dependencies
3469
- - @copilotkit/shared@1.1.2
3470
-
3471
- ## 1.1.1
3472
-
3473
- ### Patch Changes
3474
-
3475
- - - improved documentation
3476
- - center textarea popup
3477
- - show/hide dev console
3478
- - forward maxTokens, stop and force function calling
3479
- - Updated dependencies
3480
- - @copilotkit/shared@1.1.1
3481
-
3482
- ## 1.1.0
3483
-
3484
- ### Minor Changes
3485
-
3486
- - Official support for Groq (`GroqAdapter`)
3487
-
3488
- ### Patch Changes
3489
-
3490
- - Updated dependencies
3491
- - @copilotkit/shared@1.1.0
3492
-
3493
- ## 1.0.9
3494
-
3495
- ### Patch Changes
3496
-
3497
- - Dev console, bugfixes
3498
- - Updated dependencies
3499
- - @copilotkit/shared@1.0.9
3500
-
3501
- ## 1.0.8
3502
-
3503
- ### Patch Changes
3504
-
3505
- - Remove redundant console logs
3506
- - Updated dependencies
3507
- - @copilotkit/shared@1.0.8
3508
-
3509
- ## 1.0.7
3510
-
3511
- ### Patch Changes
3512
-
3513
- - Add \_copilotkit internal properties to runtime
3514
- - Updated dependencies
3515
- - @copilotkit/shared@1.0.7
3516
-
3517
- ## 1.0.6
3518
-
3519
- ### Patch Changes
3520
-
3521
- - - Proactively prevent race conditions
3522
- - Improve token counting performance
3523
- - Updated dependencies
3524
- - @copilotkit/shared@1.0.6
3525
-
3526
- ## 1.0.5
3527
-
3528
- ### Patch Changes
3529
-
3530
- - Include @copilotkit/runtime-client-gql NPM package version in request to Runtime
3531
- - Updated dependencies
3532
- - @copilotkit/shared@1.0.5
3533
-
3534
- ## 1.0.4
3535
-
3536
- ### Patch Changes
3537
-
3538
- - Remove nanoid
3539
- - Updated dependencies
3540
- - @copilotkit/shared@1.0.4
3541
-
3542
- ## 1.0.3
3543
-
3544
- ### Patch Changes
3545
-
3546
- - Add README.md to published packages and add keywords to package.json
3547
- - Updated dependencies
3548
- - @copilotkit/shared@1.0.3
3549
-
3550
- ## 1.0.2
3551
-
3552
- ### Patch Changes
3553
-
3554
- - Add README.md and homepage/url to published packages
3555
- - Updated dependencies
3556
- - @copilotkit/shared@1.0.2
3557
-
3558
- ## 1.0.1
3559
-
3560
- ### Patch Changes
3561
-
3562
- - Remove PostHog, use Segment Anonymous Telemetry instead
3563
- - Updated dependencies
3564
- - @copilotkit/shared@1.0.1
3565
-
3566
- ## 1.0.0
3567
-
3568
- ### Major Changes
3569
-
3570
- - b6a4b6eb: V1.0 Release Candidate
3571
- - A robust new protocol between the frontend and the Copilot Runtime
3572
- - Support for Copilot Cloud
3573
- - Generative UI
3574
- - Support for LangChain universal tool calling
3575
- - OpenAI assistant API streaming
3576
-
3577
- - V1.0 Release
3578
- - A robust new protocol between the frontend and the Copilot Runtime
3579
- - Support for Copilot Cloud
3580
- - Generative UI
3581
- - Support for LangChain universal tool calling
3582
- - OpenAI assistant API streaming
3583
-
3584
- ### Patch Changes
3585
-
3586
- - b6a4b6eb: Introduce anonymous telemetry
3587
- - b6a4b6eb: Set default Copilot Cloud runtime URL to versioned URL (v1)
3588
- - Updated dependencies [b6a4b6eb]
3589
- - Updated dependencies [b6a4b6eb]
3590
- - Updated dependencies [b6a4b6eb]
3591
- - Updated dependencies
3592
- - @copilotkit/shared@1.0.0
3593
-
3594
- ## 1.0.0-beta.2
3595
-
3596
- ### Patch Changes
3597
-
3598
- - Set default Copilot Cloud runtime URL to versioned URL (v1)
3599
- - Updated dependencies
3600
- - @copilotkit/shared@1.0.0-beta.2
3601
-
3602
- ## 1.0.0-beta.1
3603
-
3604
- ### Patch Changes
3605
-
3606
- - Introduce anonymous telemetry
3607
- - Updated dependencies
3608
- - @copilotkit/shared@1.0.0-beta.1
3609
-
3610
- ## 1.0.0-beta.0
3611
-
3612
- ### Major Changes
3613
-
3614
- - V1.0 Release Candidate
3615
- - A robust new protocol between the frontend and the Copilot Runtime
3616
- - Support for Copilot Cloud
3617
- - Generative UI
3618
- - Support for LangChain universal tool calling
3619
- - OpenAI assistant API streaming
3620
-
3621
- ### Patch Changes
3622
-
3623
- - Updated dependencies
3624
- - @copilotkit/shared@1.0.0-beta.0