@coursebuilder/core
Version:
Core package for Course Builder
53 lines (52 loc) • 1.93 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
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/inngest/util/streaming-chat-prompt-executor.ts
var streaming_chat_prompt_executor_exports = {};
__export(streaming_chat_prompt_executor_exports, {
streamingChatPromptExecutor: () => streamingChatPromptExecutor
});
module.exports = __toCommonJS(streaming_chat_prompt_executor_exports);
async function streamingChatPromptExecutor({ requestId, promptMessages, model, provider }) {
const result = await provider.createChatCompletion({
messages: promptMessages,
chatId: requestId,
model
});
if (!result) {
throw new Error("Chat completion returned null");
}
if ("error" in result) {
throw new Error(result.error);
}
const message = result;
return [
...promptMessages,
{
role: "assistant",
content: message.content
}
];
}
__name(streamingChatPromptExecutor, "streamingChatPromptExecutor");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
streamingChatPromptExecutor
});
//# sourceMappingURL=streaming-chat-prompt-executor.cjs.map