@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;" />
79 lines (78 loc) • 3.37 kB
JavaScript
;
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-configure-chat-suggestions.tsx
var use_configure_chat_suggestions_exports = {};
__export(use_configure_chat_suggestions_exports, {
useConfigureChatSuggestions: () => useConfigureChatSuggestions
});
module.exports = __toCommonJS(use_configure_chat_suggestions_exports);
var import_react = require("@copilotkitnext/react");
var import_react2 = require("react");
function useConfigureChatSuggestions(config, dependencies = []) {
var _a;
const existingConfig = (0, import_react.useCopilotChatConfiguration)();
const resolvedAgentId = (_a = existingConfig == null ? void 0 : existingConfig.agentId) != null ? _a : "default";
const { copilotkit } = (0, import_react.useCopilotKit)();
const available = config.available === "enabled" ? "always" : config.available;
const finalSuggestionConfig = __spreadProps(__spreadValues({}, config), {
available,
consumerAgentId: resolvedAgentId
// Use chatConfig.agentId here
});
(0, import_react.useConfigureSuggestions)(finalSuggestionConfig, dependencies);
const result = (0, import_react.useSuggestions)({ agentId: resolvedAgentId });
(0, import_react2.useEffect)(() => {
if (finalSuggestionConfig.available === "disabled")
return;
const subscription = copilotkit.subscribe({
onAgentsChanged: () => {
const agent = copilotkit.getAgent(resolvedAgentId);
if (agent && !agent.isRunning && !result.suggestions.length) {
copilotkit.reloadSuggestions(resolvedAgentId);
}
}
});
return () => {
subscription.unsubscribe();
};
}, [resolvedAgentId]);
return result;
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
useConfigureChatSuggestions
});
//# sourceMappingURL=use-configure-chat-suggestions.js.map