@copilotkit/react-core 1.3.2-pre.0 → 1.3.2

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 (35) hide show
  1. package/CHANGELOG.md +15 -4
  2. package/dist/{chunk-TEIODURE.mjs → chunk-AUOJYT7F.mjs} +2 -2
  3. package/dist/{chunk-4O5723ZO.mjs → chunk-KEB6L26Z.mjs} +15 -7
  4. package/dist/chunk-KEB6L26Z.mjs.map +1 -0
  5. package/dist/{chunk-A37GANOW.mjs → chunk-MKUT74CS.mjs} +30 -4
  6. package/dist/chunk-MKUT74CS.mjs.map +1 -0
  7. package/dist/{chunk-5BC3DR3F.mjs → chunk-S42AVBOS.mjs} +2 -2
  8. package/dist/hooks/index.js +39 -9
  9. package/dist/hooks/index.js.map +1 -1
  10. package/dist/hooks/index.mjs +7 -7
  11. package/dist/hooks/use-chat.js +14 -6
  12. package/dist/hooks/use-chat.js.map +1 -1
  13. package/dist/hooks/use-chat.mjs +1 -1
  14. package/dist/hooks/use-coagent.js +14 -6
  15. package/dist/hooks/use-coagent.js.map +1 -1
  16. package/dist/hooks/use-coagent.mjs +4 -4
  17. package/dist/hooks/use-copilot-action.js +39 -3
  18. package/dist/hooks/use-copilot-action.js.map +1 -1
  19. package/dist/hooks/use-copilot-action.mjs +1 -1
  20. package/dist/hooks/use-copilot-chat.js +14 -6
  21. package/dist/hooks/use-copilot-chat.js.map +1 -1
  22. package/dist/hooks/use-copilot-chat.mjs +2 -2
  23. package/dist/index.js +39 -9
  24. package/dist/index.js.map +1 -1
  25. package/dist/index.mjs +7 -7
  26. package/dist/types/frontend-action.d.ts +46 -2
  27. package/dist/types/frontend-action.js.map +1 -1
  28. package/package.json +5 -5
  29. package/src/hooks/use-chat.ts +28 -10
  30. package/src/hooks/use-copilot-action.ts +45 -4
  31. package/src/types/frontend-action.ts +69 -6
  32. package/dist/chunk-4O5723ZO.mjs.map +0 -1
  33. package/dist/chunk-A37GANOW.mjs.map +0 -1
  34. /package/dist/{chunk-TEIODURE.mjs.map → chunk-AUOJYT7F.mjs.map} +0 -0
  35. /package/dist/{chunk-5BC3DR3F.mjs.map → chunk-S42AVBOS.mjs.map} +0 -0
package/CHANGELOG.md CHANGED
@@ -1,13 +1,24 @@
1
1
  # ui
2
2
 
3
- ## 1.3.2-pre.0
3
+ ## 1.3.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - pre
7
+ - Features and bug fixes
8
+ - 30232c0: Ensure actions can be discovered on state change
8
9
  - Updated dependencies
9
- - @copilotkit/runtime-client-gql@1.3.2-pre.0
10
- - @copilotkit/shared@1.3.2-pre.0
10
+ - Updated dependencies [30232c0]
11
+ - @copilotkit/runtime-client-gql@1.3.2
12
+ - @copilotkit/shared@1.3.2
13
+
14
+ ## 1.3.2-mme-discover-actions.0
15
+
16
+ ### Patch Changes
17
+
18
+ - Ensure actions can be discovered on state change
19
+ - Updated dependencies
20
+ - @copilotkit/runtime-client-gql@1.3.2-mme-discover-actions.0
21
+ - @copilotkit/shared@1.3.2-mme-discover-actions.0
11
22
 
12
23
  ## 1.3.1
13
24
 
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  useCopilotChat
3
- } from "./chunk-5BC3DR3F.mjs";
3
+ } from "./chunk-S42AVBOS.mjs";
4
4
  import {
5
5
  useCopilotContext
6
6
  } from "./chunk-J2YXDQHR.mjs";
@@ -133,4 +133,4 @@ ${hint}`;
133
133
  export {
134
134
  useCoAgent
135
135
  };
136
- //# sourceMappingURL=chunk-TEIODURE.mjs.map
136
+ //# sourceMappingURL=chunk-AUOJYT7F.mjs.map
@@ -45,6 +45,11 @@ function useChat(options) {
45
45
  const abortControllerRef = useRef();
46
46
  const threadIdRef = useRef(null);
47
47
  const runIdRef = useRef(null);
48
+ const runChatCompletionRef = useRef();
49
+ const coagentStatesRef = useRef(coagentStates);
50
+ coagentStatesRef.current = coagentStates;
51
+ const agentSessionRef = useRef(agentSession);
52
+ agentSessionRef.current = agentSession;
48
53
  const publicApiKey = copilotConfig.publicApiKey;
49
54
  const headers = __spreadValues(__spreadValues({}, copilotConfig.headers || {}), publicApiKey ? { [COPILOT_CLOUD_PUBLIC_API_KEY_HEADER]: publicApiKey } : {});
50
55
  const runtimeClient = new CopilotRuntimeClient({
@@ -71,7 +76,7 @@ function useChat(options) {
71
76
  runtimeClient.generateCopilotResponse({
72
77
  data: __spreadProps(__spreadValues(__spreadProps(__spreadValues({
73
78
  frontend: {
74
- actions: actions.map((action) => ({
79
+ actions: actions.filter((action) => !action.disabled).map((action) => ({
75
80
  name: action.name,
76
81
  description: action.description || "",
77
82
  jsonSchema: JSON.stringify(actionParametersToJsonSchema(action.parameters || []))
@@ -94,10 +99,10 @@ function useChat(options) {
94
99
  metadata: {
95
100
  requestType: CopilotRequestType.Chat
96
101
  }
97
- }), agentSession ? {
98
- agentSession
102
+ }), agentSessionRef.current ? {
103
+ agentSession: agentSessionRef.current
99
104
  } : {}), {
100
- agentStates: Object.values(coagentStates).map((state) => ({
105
+ agentStates: Object.values(coagentStatesRef.current).map((state) => ({
101
106
  agentName: state.name,
102
107
  state: JSON.stringify(state.state)
103
108
  }))
@@ -144,6 +149,7 @@ function useChat(options) {
144
149
  break;
145
150
  }
146
151
  try {
152
+ setMessages([...previousMessages, ...newMessages]);
147
153
  const result = yield onFunctionCall({
148
154
  messages: previousMessages,
149
155
  name: message.name,
@@ -177,6 +183,7 @@ function useChat(options) {
177
183
  }
178
184
  const lastAgentStateMessage = [...messages2].reverse().find((message) => message instanceof AgentStateMessage);
179
185
  if (lastAgentStateMessage) {
186
+ console.log(lastAgentStateMessage);
180
187
  if (lastAgentStateMessage.running) {
181
188
  setCoagentStates((prevAgentStates) => __spreadProps(__spreadValues({}, prevAgentStates), {
182
189
  [lastAgentStateMessage.agentName]: {
@@ -209,7 +216,7 @@ function useChat(options) {
209
216
  newMessages.length && newMessages[newMessages.length - 1] instanceof ResultMessage
210
217
  ) {
211
218
  yield new Promise((resolve) => setTimeout(resolve, 10));
212
- return yield runChatCompletion([...previousMessages, ...newMessages]);
219
+ return yield runChatCompletionRef.current([...previousMessages, ...newMessages]);
213
220
  } else {
214
221
  return newMessages.slice();
215
222
  }
@@ -217,8 +224,9 @@ function useChat(options) {
217
224
  setIsLoading(false);
218
225
  }
219
226
  });
227
+ runChatCompletionRef.current = runChatCompletion;
220
228
  const runChatCompletionAndHandleFunctionCall = (messages2) => __async(this, null, function* () {
221
- yield runChatCompletion(messages2);
229
+ yield runChatCompletionRef.current(messages2);
222
230
  });
223
231
  const append = (message) => __async(this, null, function* () {
224
232
  if (isLoading) {
@@ -254,4 +262,4 @@ function useChat(options) {
254
262
  export {
255
263
  useChat
256
264
  };
257
- //# sourceMappingURL=chunk-4O5723ZO.mjs.map
265
+ //# sourceMappingURL=chunk-KEB6L26Z.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/hooks/use-chat.ts"],"sourcesContent":["import { useRef } from \"react\";\nimport {\n FunctionCallHandler,\n COPILOT_CLOUD_PUBLIC_API_KEY_HEADER,\n actionParametersToJsonSchema,\n CoagentActionHandler,\n} from \"@copilotkit/shared\";\nimport {\n Message,\n TextMessage,\n ActionExecutionMessage,\n ResultMessage,\n CopilotRuntimeClient,\n convertMessagesToGqlInput,\n filterAdjacentAgentStateMessages,\n filterAgentStateMessages,\n convertGqlOutputToMessages,\n MessageStatusCode,\n MessageRole,\n Role,\n CopilotRequestType,\n AgentStateMessage,\n} from \"@copilotkit/runtime-client-gql\";\n\nimport { CopilotApiConfig } from \"../context\";\nimport { FrontendAction } from \"../types/frontend-action\";\nimport { CoagentState } from \"../types/coagent-state\";\nimport { AgentSession } from \"../context/copilot-context\";\n\nexport type UseChatOptions = {\n /**\n * System messages of the chat. Defaults to an empty array.\n */\n initialMessages?: Message[];\n /**\n * Callback function to be called when a function call is received.\n * If the function returns a `ChatRequest` object, the request will be sent\n * automatically to the API and will be used to update the chat.\n */\n onFunctionCall?: FunctionCallHandler;\n\n /**\n * Callback function to be called when a coagent action is received.\n */\n onCoagentAction?: CoagentActionHandler;\n\n /**\n * Function definitions to be sent to the API.\n */\n actions: FrontendAction<any>[];\n\n /**\n * The CopilotKit API configuration.\n */\n copilotConfig: CopilotApiConfig;\n\n /**\n * The current list of messages in the chat.\n */\n messages: Message[];\n /**\n * The setState-powered method to update the chat messages.\n */\n setMessages: React.Dispatch<React.SetStateAction<Message[]>>;\n\n /**\n * A callback to get the latest system message.\n */\n makeSystemMessageCallback: () => TextMessage;\n\n /**\n * Whether the API request is in progress\n */\n isLoading: boolean;\n\n /**\n * setState-powered method to update the isChatLoading value\n */\n setIsLoading: React.Dispatch<React.SetStateAction<boolean>>;\n\n /**\n * The current list of coagent states.\n */\n coagentStates: Record<string, CoagentState>;\n\n /**\n * setState-powered method to update the agent states\n */\n setCoagentStates: React.Dispatch<React.SetStateAction<Record<string, CoagentState>>>;\n\n /**\n * The current agent session.\n */\n agentSession: AgentSession | null;\n\n /**\n * setState-powered method to update the agent session\n */\n setAgentSession: React.Dispatch<React.SetStateAction<AgentSession | null>>;\n};\n\nexport type UseChatHelpers = {\n /**\n * Append a user message to the chat list. This triggers the API call to fetch\n * the assistant's response.\n * @param message The message to append\n */\n append: (message: Message) => Promise<void>;\n /**\n * Reload the last AI chat response for the given chat history. If the last\n * message isn't from the assistant, it will request the API to generate a\n * new response.\n */\n reload: () => Promise<void>;\n /**\n * Abort the current request immediately, keep the generated tokens if any.\n */\n stop: () => void;\n};\n\nexport function useChat(options: UseChatOptions): UseChatHelpers {\n const {\n messages,\n setMessages,\n makeSystemMessageCallback,\n copilotConfig,\n setIsLoading,\n initialMessages,\n isLoading,\n actions,\n onFunctionCall,\n onCoagentAction,\n setCoagentStates,\n coagentStates,\n agentSession,\n setAgentSession,\n } = options;\n\n const abortControllerRef = useRef<AbortController>();\n const threadIdRef = useRef<string | null>(null);\n const runIdRef = useRef<string | null>(null);\n\n const runChatCompletionRef = useRef<(previousMessages: Message[]) => Promise<Message[]>>();\n // We need to keep a ref of coagent states because of renderAndWait - making sure\n // the latest state is sent to the API\n // This is a workaround and needs to be addressed in the future\n const coagentStatesRef = useRef<Record<string, CoagentState>>(coagentStates);\n coagentStatesRef.current = coagentStates;\n const agentSessionRef = useRef<AgentSession | null>(agentSession);\n agentSessionRef.current = agentSession;\n\n const publicApiKey = copilotConfig.publicApiKey;\n\n const headers = {\n ...(copilotConfig.headers || {}),\n ...(publicApiKey ? { [COPILOT_CLOUD_PUBLIC_API_KEY_HEADER]: publicApiKey } : {}),\n };\n\n const runtimeClient = new CopilotRuntimeClient({\n url: copilotConfig.chatApiEndpoint,\n publicApiKey: copilotConfig.publicApiKey,\n headers,\n credentials: copilotConfig.credentials,\n });\n\n const runChatCompletion = async (previousMessages: Message[]): Promise<Message[]> => {\n setIsLoading(true);\n\n // this message is just a placeholder. It will disappear once the first real message\n // is received\n let newMessages: Message[] = [\n new TextMessage({\n content: \"\",\n role: Role.Assistant,\n }),\n ];\n const abortController = new AbortController();\n abortControllerRef.current = abortController;\n\n setMessages([...previousMessages, ...newMessages]);\n\n const systemMessage = makeSystemMessageCallback();\n\n const messagesWithContext = [systemMessage, ...(initialMessages || []), ...previousMessages];\n\n const stream = CopilotRuntimeClient.asStream(\n runtimeClient.generateCopilotResponse({\n data: {\n frontend: {\n actions: actions\n .filter((action) => !action.disabled)\n .map((action) => ({\n name: action.name,\n description: action.description || \"\",\n jsonSchema: JSON.stringify(actionParametersToJsonSchema(action.parameters || [])),\n })),\n url: window.location.href,\n },\n threadId: threadIdRef.current,\n runId: runIdRef.current,\n messages: convertMessagesToGqlInput(filterAgentStateMessages(messagesWithContext)),\n ...(copilotConfig.cloud\n ? {\n cloud: {\n ...(copilotConfig.cloud.guardrails?.input?.restrictToTopic?.enabled\n ? {\n guardrails: {\n inputValidationRules: {\n allowList:\n copilotConfig.cloud.guardrails.input.restrictToTopic.validTopics,\n denyList:\n copilotConfig.cloud.guardrails.input.restrictToTopic.invalidTopics,\n },\n },\n }\n : {}),\n },\n }\n : {}),\n metadata: {\n requestType: CopilotRequestType.Chat,\n },\n ...(agentSessionRef.current\n ? {\n agentSession: agentSessionRef.current,\n }\n : {}),\n agentStates: Object.values(coagentStatesRef.current).map((state) => ({\n agentName: state.name,\n state: JSON.stringify(state.state),\n })),\n },\n properties: copilotConfig.properties,\n signal: abortControllerRef.current?.signal,\n }),\n );\n\n const guardrailsEnabled =\n copilotConfig.cloud?.guardrails?.input?.restrictToTopic.enabled || false;\n\n const reader = stream.getReader();\n\n let actionResults: { [id: string]: string } = {};\n let executedCoagentActions: string[] = [];\n\n try {\n while (true) {\n const { done, value } = await reader.read();\n\n if (done) {\n break;\n }\n\n if (!value?.generateCopilotResponse) {\n continue;\n }\n\n threadIdRef.current = value.generateCopilotResponse.threadId || null;\n runIdRef.current = value.generateCopilotResponse.runId || null;\n\n const messages = convertGqlOutputToMessages(\n filterAdjacentAgentStateMessages(value.generateCopilotResponse.messages),\n );\n\n if (messages.length === 0) {\n continue;\n }\n\n newMessages = [];\n\n // request failed, display error message\n if (\n value.generateCopilotResponse.status?.__typename === \"FailedResponseStatus\" &&\n value.generateCopilotResponse.status.reason === \"GUARDRAILS_VALIDATION_FAILED\"\n ) {\n newMessages = [\n new TextMessage({\n role: MessageRole.Assistant,\n content: value.generateCopilotResponse.status.details?.guardrailsReason || \"\",\n }),\n ];\n }\n\n // add messages to the chat\n else {\n for (const message of messages) {\n newMessages.push(message);\n // execute regular action executions\n if (\n message instanceof ActionExecutionMessage &&\n message.status.code !== MessageStatusCode.Pending &&\n message.scope === \"client\" &&\n onFunctionCall\n ) {\n if (!(message.id in actionResults)) {\n // Do not execute a function call if guardrails are enabled but the status is not known\n if (guardrailsEnabled && value.generateCopilotResponse.status === undefined) {\n break;\n }\n // execute action\n try {\n // We update the message state before calling the handler so that the render\n // function can be called with `executing` state\n setMessages([...previousMessages, ...newMessages]);\n\n const result = await onFunctionCall({\n messages: previousMessages,\n name: message.name,\n args: message.arguments,\n });\n actionResults[message.id] = result;\n } catch (e) {\n actionResults[message.id] = `Failed to execute action ${message.name}`;\n console.error(`Failed to execute action ${message.name}: ${e}`);\n }\n }\n // add the result message\n newMessages.push(\n new ResultMessage({\n result: ResultMessage.encodeResult(actionResults[message.id]),\n actionExecutionId: message.id,\n actionName: message.name,\n }),\n );\n }\n // execute coagent actions\n if (\n message instanceof AgentStateMessage &&\n !message.active &&\n !executedCoagentActions.includes(message.id) &&\n onCoagentAction\n ) {\n // Do not execute a coagent action if guardrails are enabled but the status is not known\n if (guardrailsEnabled && value.generateCopilotResponse.status === undefined) {\n break;\n }\n // execute coagent action\n await onCoagentAction({\n name: message.agentName,\n nodeName: message.nodeName,\n state: message.state,\n });\n executedCoagentActions.push(message.id);\n }\n }\n\n const lastAgentStateMessage = [...messages]\n .reverse()\n .find((message) => message instanceof AgentStateMessage);\n\n if (lastAgentStateMessage) {\n console.log(lastAgentStateMessage);\n if (lastAgentStateMessage.running) {\n setCoagentStates((prevAgentStates) => ({\n ...prevAgentStates,\n [lastAgentStateMessage.agentName]: {\n name: lastAgentStateMessage.agentName,\n state: lastAgentStateMessage.state,\n running: lastAgentStateMessage.running,\n active: lastAgentStateMessage.active,\n threadId: lastAgentStateMessage.threadId,\n nodeName: lastAgentStateMessage.nodeName,\n runId: lastAgentStateMessage.runId,\n },\n }));\n setAgentSession({\n threadId: lastAgentStateMessage.threadId,\n agentName: lastAgentStateMessage.agentName,\n nodeName: lastAgentStateMessage.nodeName,\n });\n } else {\n setAgentSession(null);\n }\n }\n }\n\n if (newMessages.length > 0) {\n // Update message state\n setMessages([...previousMessages, ...newMessages]);\n }\n }\n\n if (\n // if we have client side results\n Object.values(actionResults).length ||\n // or the last message we received is a result\n (newMessages.length && newMessages[newMessages.length - 1] instanceof ResultMessage)\n ) {\n // run the completion again and return the result\n\n // wait for next tick to make sure all the react state updates\n // - tried using react-dom's flushSync, but it did not work\n await new Promise((resolve) => setTimeout(resolve, 10));\n\n return await runChatCompletionRef.current!([...previousMessages, ...newMessages]);\n } else {\n return newMessages.slice();\n }\n } finally {\n setIsLoading(false);\n }\n };\n\n runChatCompletionRef.current = runChatCompletion;\n\n const runChatCompletionAndHandleFunctionCall = async (messages: Message[]): Promise<void> => {\n await runChatCompletionRef.current!(messages);\n };\n\n const append = async (message: Message): Promise<void> => {\n if (isLoading) {\n return;\n }\n\n const newMessages = [...messages, message];\n setMessages(newMessages);\n return runChatCompletionAndHandleFunctionCall(newMessages);\n };\n\n const reload = async (): Promise<void> => {\n if (isLoading || messages.length === 0) {\n return;\n }\n let newMessages = [...messages];\n const lastMessage = messages[messages.length - 1];\n\n if (lastMessage instanceof TextMessage && lastMessage.role === \"assistant\") {\n newMessages = newMessages.slice(0, -1);\n }\n\n setMessages(newMessages);\n\n return runChatCompletionAndHandleFunctionCall(newMessages);\n };\n\n const stop = (): void => {\n abortControllerRef.current?.abort();\n };\n\n return {\n append,\n reload,\n stop,\n };\n}\n"],"mappings":"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","names":["messages"]}
@@ -1,6 +1,10 @@
1
1
  import {
2
2
  useCopilotContext
3
3
  } from "./chunk-J2YXDQHR.mjs";
4
+ import {
5
+ __async,
6
+ __spreadValues
7
+ } from "./chunk-SKC7AJIV.mjs";
4
8
 
5
9
  // src/hooks/use-copilot-action.ts
6
10
  import { useRef, useEffect } from "react";
@@ -8,6 +12,31 @@ import { randomId } from "@copilotkit/shared";
8
12
  function useCopilotAction(action, dependencies) {
9
13
  const { setAction, removeAction, actions, chatComponentsCache } = useCopilotContext();
10
14
  const idRef = useRef(randomId());
15
+ const renderAndWaitRef = useRef(null);
16
+ action = __spreadValues({}, action);
17
+ if (action.renderAndWait) {
18
+ const renderAndWait = action.renderAndWait;
19
+ action.renderAndWait = void 0;
20
+ action.handler = () => __async(this, null, function* () {
21
+ let resolve;
22
+ let reject;
23
+ const promise = new Promise((resolvePromise, rejectPromise) => {
24
+ resolve = resolvePromise;
25
+ reject = rejectPromise;
26
+ });
27
+ renderAndWaitRef.current = { promise, resolve, reject };
28
+ return yield promise;
29
+ });
30
+ action.render = (props) => {
31
+ const waitProps = {
32
+ status: props.status,
33
+ args: props.args,
34
+ result: props.result,
35
+ handler: props.status === "executing" ? renderAndWaitRef.current.resolve : void 0
36
+ };
37
+ return renderAndWait(waitProps);
38
+ };
39
+ }
11
40
  if (dependencies === void 0) {
12
41
  if (actions[idRef.current]) {
13
42
  actions[idRef.current].handler = action.handler;
@@ -19,9 +48,6 @@ function useCopilotAction(action, dependencies) {
19
48
  }
20
49
  }
21
50
  useEffect(() => {
22
- if (action.disabled) {
23
- return;
24
- }
25
51
  setAction(idRef.current, action);
26
52
  if (chatComponentsCache.current !== null && action.render !== void 0) {
27
53
  chatComponentsCache.current.actions[action.name] = action.render;
@@ -48,4 +74,4 @@ function useCopilotAction(action, dependencies) {
48
74
  export {
49
75
  useCopilotAction
50
76
  };
51
- //# sourceMappingURL=chunk-A37GANOW.mjs.map
77
+ //# sourceMappingURL=chunk-MKUT74CS.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/hooks/use-copilot-action.ts"],"sourcesContent":["import { useRef, useEffect } from \"react\";\nimport { FrontendAction, ActionRenderProps, ActionRenderPropsWait } from \"../types/frontend-action\";\nimport { useCopilotContext } from \"../context/copilot-context\";\nimport { Parameter, randomId } from \"@copilotkit/shared\";\n\n// We implement useCopilotAction dependency handling so that\n// the developer has the option to not provide any dependencies.\n// In this case, we assume they want to update the handler on each rerender.\n// To avoid getting stuck in an infinite loop, we update the handler directly,\n// skipping React state updates.\n// This is ok in this case, because the handler is not part of any UI that\n// needs to be updated.\n// useCallback, useMemo or other memoization techniques are not suitable here,\n// because they will cause a infinite rerender loop.\nexport function useCopilotAction<const T extends Parameter[] | [] = []>(\n action: FrontendAction<T>,\n dependencies?: any[],\n): void {\n const { setAction, removeAction, actions, chatComponentsCache } = useCopilotContext();\n const idRef = useRef<string>(randomId());\n const renderAndWaitRef = useRef<RenderAndWait | null>(null);\n\n // clone the action to avoid mutating the original object\n action = { ...action };\n\n // If the developer provides a renderAndWait function, we transform the action\n // to use a promise internally, so that we can treat it like a normal action.\n if (action.renderAndWait) {\n const renderAndWait = action.renderAndWait!;\n\n // remove the renderAndWait function from the action\n action.renderAndWait = undefined;\n\n // add a handler that will be called when the action is executed\n action.handler = (async () => {\n // we create a new promise when the handler is called\n let resolve: (result: any) => void;\n let reject: (error: any) => void;\n const promise = new Promise<any>((resolvePromise, rejectPromise) => {\n resolve = resolvePromise;\n reject = rejectPromise;\n });\n renderAndWaitRef.current = { promise, resolve: resolve!, reject: reject! };\n // then we await the promise (it will be resolved in the original renderAndWait function)\n return await promise;\n }) as any;\n\n // add a render function that will be called when the action is rendered\n action.render = ((props: ActionRenderProps<any>): React.ReactElement => {\n const waitProps: ActionRenderPropsWait<any> = {\n status: props.status as any,\n args: props.args,\n result: props.result,\n handler: props.status === \"executing\" ? renderAndWaitRef.current!.resolve : undefined,\n };\n return renderAndWait(waitProps);\n }) as any;\n }\n\n // If the developer doesn't provide dependencies, we assume they want to\n // update handler and render function when the action object changes.\n // This ensures that any captured variables in the handler are up to date.\n if (dependencies === undefined) {\n if (actions[idRef.current]) {\n actions[idRef.current].handler = action.handler as any;\n if (typeof action.render === \"function\") {\n if (chatComponentsCache.current !== null) {\n chatComponentsCache.current.actions[action.name] = action.render;\n }\n }\n }\n }\n\n useEffect(() => {\n setAction(idRef.current, action as any);\n if (chatComponentsCache.current !== null && action.render !== undefined) {\n chatComponentsCache.current.actions[action.name] = action.render;\n }\n return () => {\n // NOTE: For now, we don't remove the chatComponentsCache entry when the action is removed.\n // This is because we currently don't have access to the messages array in CopilotContext.\n removeAction(idRef.current);\n };\n }, [\n setAction,\n removeAction,\n action.description,\n action.name,\n action.disabled,\n // This should be faster than deep equality checking\n // In addition, all major JS engines guarantee the order of object keys\n JSON.stringify(action.parameters),\n // include render only if it's a string\n typeof action.render === \"string\" ? action.render : undefined,\n // dependencies set by the developer\n ...(dependencies || []),\n ]);\n}\n\ninterface RenderAndWait {\n promise: Promise<any>;\n resolve: (result: any) => void;\n reject: (error: any) => void;\n}\n\n// Usage Example:\n// useCopilotAction({\n// name: \"myAction\",\n// parameters: [\n// { name: \"arg1\", type: \"string\", enum: [\"option1\", \"option2\", \"option3\"], required: false },\n// { name: \"arg2\", type: \"number\" },\n// {\n// name: \"arg3\",\n// type: \"object\",\n// attributes: [\n// { name: \"nestedArg1\", type: \"boolean\" },\n// { name: \"xyz\", required: false },\n// ],\n// },\n// { name: \"arg4\", type: \"number[]\" },\n// ],\n// handler: ({ arg1, arg2, arg3, arg4 }) => {\n// const x = arg3.nestedArg1;\n// const z = arg3.xyz;\n// console.log(arg1, arg2, arg3);\n// },\n// });\n\n// useCopilotAction({\n// name: \"myAction\",\n// handler: () => {\n// console.log(\"No parameters provided.\");\n// },\n// });\n"],"mappings":";;;;;;;;;AAAA,SAAS,QAAQ,iBAAiB;AAGlC,SAAoB,gBAAgB;AAW7B,SAAS,iBACd,QACA,cACM;AACN,QAAM,EAAE,WAAW,cAAc,SAAS,oBAAoB,IAAI,kBAAkB;AACpF,QAAM,QAAQ,OAAe,SAAS,CAAC;AACvC,QAAM,mBAAmB,OAA6B,IAAI;AAG1D,WAAS,mBAAK;AAId,MAAI,OAAO,eAAe;AACxB,UAAM,gBAAgB,OAAO;AAG7B,WAAO,gBAAgB;AAGvB,WAAO,UAAW,MAAY;AAE5B,UAAI;AACJ,UAAI;AACJ,YAAM,UAAU,IAAI,QAAa,CAAC,gBAAgB,kBAAkB;AAClE,kBAAU;AACV,iBAAS;AAAA,MACX,CAAC;AACD,uBAAiB,UAAU,EAAE,SAAS,SAAmB,OAAgB;AAEzE,aAAO,MAAM;AAAA,IACf;AAGA,WAAO,SAAU,CAAC,UAAsD;AACtE,YAAM,YAAwC;AAAA,QAC5C,QAAQ,MAAM;AAAA,QACd,MAAM,MAAM;AAAA,QACZ,QAAQ,MAAM;AAAA,QACd,SAAS,MAAM,WAAW,cAAc,iBAAiB,QAAS,UAAU;AAAA,MAC9E;AACA,aAAO,cAAc,SAAS;AAAA,IAChC;AAAA,EACF;AAKA,MAAI,iBAAiB,QAAW;AAC9B,QAAI,QAAQ,MAAM,OAAO,GAAG;AAC1B,cAAQ,MAAM,OAAO,EAAE,UAAU,OAAO;AACxC,UAAI,OAAO,OAAO,WAAW,YAAY;AACvC,YAAI,oBAAoB,YAAY,MAAM;AACxC,8BAAoB,QAAQ,QAAQ,OAAO,IAAI,IAAI,OAAO;AAAA,QAC5D;AAAA,MACF;AAAA,IACF;AAAA,EACF;AAEA,YAAU,MAAM;AACd,cAAU,MAAM,SAAS,MAAa;AACtC,QAAI,oBAAoB,YAAY,QAAQ,OAAO,WAAW,QAAW;AACvE,0BAAoB,QAAQ,QAAQ,OAAO,IAAI,IAAI,OAAO;AAAA,IAC5D;AACA,WAAO,MAAM;AAGX,mBAAa,MAAM,OAAO;AAAA,IAC5B;AAAA,EACF,GAAG;AAAA,IACD;AAAA,IACA;AAAA,IACA,OAAO;AAAA,IACP,OAAO;AAAA,IACP,OAAO;AAAA;AAAA;AAAA,IAGP,KAAK,UAAU,OAAO,UAAU;AAAA;AAAA,IAEhC,OAAO,OAAO,WAAW,WAAW,OAAO,SAAS;AAAA;AAAA,IAEpD,GAAI,gBAAgB,CAAC;AAAA,EACvB,CAAC;AACH;","names":[]}
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-RBNULK3U.mjs";
4
4
  import {
5
5
  useChat
6
- } from "./chunk-4O5723ZO.mjs";
6
+ } from "./chunk-KEB6L26Z.mjs";
7
7
  import {
8
8
  useCopilotContext
9
9
  } from "./chunk-J2YXDQHR.mjs";
@@ -162,4 +162,4 @@ export {
162
162
  useCopilotChat,
163
163
  defaultSystemMessage
164
164
  };
165
- //# sourceMappingURL=chunk-5BC3DR3F.mjs.map
165
+ //# sourceMappingURL=chunk-S42AVBOS.mjs.map
@@ -185,6 +185,11 @@ function useChat(options) {
185
185
  const abortControllerRef = (0, import_react2.useRef)();
186
186
  const threadIdRef = (0, import_react2.useRef)(null);
187
187
  const runIdRef = (0, import_react2.useRef)(null);
188
+ const runChatCompletionRef = (0, import_react2.useRef)();
189
+ const coagentStatesRef = (0, import_react2.useRef)(coagentStates);
190
+ coagentStatesRef.current = coagentStates;
191
+ const agentSessionRef = (0, import_react2.useRef)(agentSession);
192
+ agentSessionRef.current = agentSession;
188
193
  const publicApiKey = copilotConfig.publicApiKey;
189
194
  const headers = __spreadValues(__spreadValues({}, copilotConfig.headers || {}), publicApiKey ? { [import_shared.COPILOT_CLOUD_PUBLIC_API_KEY_HEADER]: publicApiKey } : {});
190
195
  const runtimeClient = new import_runtime_client_gql.CopilotRuntimeClient({
@@ -211,7 +216,7 @@ function useChat(options) {
211
216
  runtimeClient.generateCopilotResponse({
212
217
  data: __spreadProps(__spreadValues(__spreadProps(__spreadValues({
213
218
  frontend: {
214
- actions: actions.map((action) => ({
219
+ actions: actions.filter((action) => !action.disabled).map((action) => ({
215
220
  name: action.name,
216
221
  description: action.description || "",
217
222
  jsonSchema: JSON.stringify((0, import_shared.actionParametersToJsonSchema)(action.parameters || []))
@@ -234,10 +239,10 @@ function useChat(options) {
234
239
  metadata: {
235
240
  requestType: import_runtime_client_gql.CopilotRequestType.Chat
236
241
  }
237
- }), agentSession ? {
238
- agentSession
242
+ }), agentSessionRef.current ? {
243
+ agentSession: agentSessionRef.current
239
244
  } : {}), {
240
- agentStates: Object.values(coagentStates).map((state) => ({
245
+ agentStates: Object.values(coagentStatesRef.current).map((state) => ({
241
246
  agentName: state.name,
242
247
  state: JSON.stringify(state.state)
243
248
  }))
@@ -284,6 +289,7 @@ function useChat(options) {
284
289
  break;
285
290
  }
286
291
  try {
292
+ setMessages([...previousMessages, ...newMessages]);
287
293
  const result = yield onFunctionCall({
288
294
  messages: previousMessages,
289
295
  name: message.name,
@@ -317,6 +323,7 @@ function useChat(options) {
317
323
  }
318
324
  const lastAgentStateMessage = [...messages2].reverse().find((message) => message instanceof import_runtime_client_gql.AgentStateMessage);
319
325
  if (lastAgentStateMessage) {
326
+ console.log(lastAgentStateMessage);
320
327
  if (lastAgentStateMessage.running) {
321
328
  setCoagentStates((prevAgentStates) => __spreadProps(__spreadValues({}, prevAgentStates), {
322
329
  [lastAgentStateMessage.agentName]: {
@@ -349,7 +356,7 @@ function useChat(options) {
349
356
  newMessages.length && newMessages[newMessages.length - 1] instanceof import_runtime_client_gql.ResultMessage
350
357
  ) {
351
358
  yield new Promise((resolve) => setTimeout(resolve, 10));
352
- return yield runChatCompletion([...previousMessages, ...newMessages]);
359
+ return yield runChatCompletionRef.current([...previousMessages, ...newMessages]);
353
360
  } else {
354
361
  return newMessages.slice();
355
362
  }
@@ -357,8 +364,9 @@ function useChat(options) {
357
364
  setIsLoading(false);
358
365
  }
359
366
  });
367
+ runChatCompletionRef.current = runChatCompletion;
360
368
  const runChatCompletionAndHandleFunctionCall = (messages2) => __async(this, null, function* () {
361
- yield runChatCompletion(messages2);
369
+ yield runChatCompletionRef.current(messages2);
362
370
  });
363
371
  const append = (message) => __async(this, null, function* () {
364
372
  if (isLoading) {
@@ -546,6 +554,31 @@ var import_shared3 = require("@copilotkit/shared");
546
554
  function useCopilotAction(action, dependencies) {
547
555
  const { setAction, removeAction, actions, chatComponentsCache } = useCopilotContext();
548
556
  const idRef = (0, import_react5.useRef)((0, import_shared3.randomId)());
557
+ const renderAndWaitRef = (0, import_react5.useRef)(null);
558
+ action = __spreadValues({}, action);
559
+ if (action.renderAndWait) {
560
+ const renderAndWait = action.renderAndWait;
561
+ action.renderAndWait = void 0;
562
+ action.handler = () => __async(this, null, function* () {
563
+ let resolve;
564
+ let reject;
565
+ const promise = new Promise((resolvePromise, rejectPromise) => {
566
+ resolve = resolvePromise;
567
+ reject = rejectPromise;
568
+ });
569
+ renderAndWaitRef.current = { promise, resolve, reject };
570
+ return yield promise;
571
+ });
572
+ action.render = (props) => {
573
+ const waitProps = {
574
+ status: props.status,
575
+ args: props.args,
576
+ result: props.result,
577
+ handler: props.status === "executing" ? renderAndWaitRef.current.resolve : void 0
578
+ };
579
+ return renderAndWait(waitProps);
580
+ };
581
+ }
549
582
  if (dependencies === void 0) {
550
583
  if (actions[idRef.current]) {
551
584
  actions[idRef.current].handler = action.handler;
@@ -557,9 +590,6 @@ function useCopilotAction(action, dependencies) {
557
590
  }
558
591
  }
559
592
  (0, import_react5.useEffect)(() => {
560
- if (action.disabled) {
561
- return;
562
- }
563
593
  setAction(idRef.current, action);
564
594
  if (chatComponentsCache.current !== null && action.render !== void 0) {
565
595
  chatComponentsCache.current.actions[action.name] = action.render;