Files
klz-cables.com/.pnpm-store/v10/files/a2/b13c68152b393fd3439321918748cee1e390cae67920bf6060480f6a83e99f9ed557eef0aec7cf4b46f7507851e18dc6337403e38e2a5bb42b77e467e65896
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

38 lines
1.3 KiB
Plaintext

Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const OPENAI_INTEGRATION_NAME = 'OpenAI';
// https://platform.openai.com/docs/quickstart?api-mode=responses
// https://platform.openai.com/docs/quickstart?api-mode=chat
// https://platform.openai.com/docs/api-reference/conversations
const INSTRUMENTED_METHODS = [
'responses.create',
'chat.completions.create',
'embeddings.create',
// Conversations API - for conversation state management
// https://platform.openai.com/docs/guides/conversation-state
'conversations.create',
] ;
const RESPONSES_TOOL_CALL_EVENT_TYPES = [
'response.output_item.added',
'response.function_call_arguments.delta',
'response.function_call_arguments.done',
'response.output_item.done',
] ;
const RESPONSE_EVENT_TYPES = [
'response.created',
'response.in_progress',
'response.failed',
'response.completed',
'response.incomplete',
'response.queued',
'response.output_text.delta',
...RESPONSES_TOOL_CALL_EVENT_TYPES,
] ;
exports.INSTRUMENTED_METHODS = INSTRUMENTED_METHODS;
exports.OPENAI_INTEGRATION_NAME = OPENAI_INTEGRATION_NAME;
exports.RESPONSES_TOOL_CALL_EVENT_TYPES = RESPONSES_TOOL_CALL_EVENT_TYPES;
exports.RESPONSE_EVENT_TYPES = RESPONSE_EVENT_TYPES;
//# sourceMappingURL=constants.js.map