UNPKG

@copilotkit/react-core

Version:

<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />

60 lines (59 loc) 2.71 kB
"use strict"; var __defProp = Object.defineProperty; var __defProps = Object.defineProperties; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropDescs = Object.getOwnPropertyDescriptors; var __getOwnPropNames = Object.getOwnPropertyNames; var __getOwnPropSymbols = Object.getOwnPropertySymbols; var __hasOwnProp = Object.prototype.hasOwnProperty; var __propIsEnum = Object.prototype.propertyIsEnumerable; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __spreadValues = (a, b) => { for (var prop in b || (b = {})) if (__hasOwnProp.call(b, prop)) __defNormalProp(a, prop, b[prop]); if (__getOwnPropSymbols) for (var prop of __getOwnPropSymbols(b)) { if (__propIsEnum.call(b, prop)) __defNormalProp(a, prop, b[prop]); } return a; }; var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b)); var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/hooks/use-copilot-chat-suggestions.tsx var use_copilot_chat_suggestions_exports = {}; __export(use_copilot_chat_suggestions_exports, { useCopilotChatSuggestions: () => useCopilotChatSuggestions }); module.exports = __toCommonJS(use_copilot_chat_suggestions_exports); var import_react = require("@copilotkitnext/react"); function useCopilotChatSuggestions(config, dependencies = []) { var _a, _b; const existingConfig = (0, import_react.useCopilotChatConfiguration)(); const resolvedAgentId = (_a = existingConfig == null ? void 0 : existingConfig.agentId) != null ? _a : "default"; const available = (_b = config.available === "enabled" ? "always" : config.available) != null ? _b : "before-first-message"; const finalSuggestionConfig = __spreadProps(__spreadValues({}, config), { available, consumerAgentId: resolvedAgentId // Use chatConfig.agentId here }); (0, import_react.useConfigureSuggestions)(finalSuggestionConfig, dependencies); } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { useCopilotChatSuggestions }); //# sourceMappingURL=use-copilot-chat-suggestions.js.map