@discomedia/utils 1.0.14 → 1.0.16
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.
- package/dist/index-frontend.cjs +8 -10
- package/dist/index-frontend.cjs.map +1 -1
- package/dist/index-frontend.mjs +8 -10
- package/dist/index-frontend.mjs.map +1 -1
- package/dist/index.cjs +9 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +9 -11
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/test.js +8 -8
- package/dist/test.js.map +1 -1
- package/dist/types/llm-openai.d.ts +1 -8
- package/dist/types/llm-openai.d.ts.map +1 -1
- package/dist/types/market-time.d.ts +0 -1
- package/dist/types/market-time.d.ts.map +1 -1
- package/dist/types/types/llm-types.d.ts +7 -0
- package/dist/types/types/llm-types.d.ts.map +1 -1
- package/dist/types-frontend/llm-openai.d.ts +1 -8
- package/dist/types-frontend/llm-openai.d.ts.map +1 -1
- package/dist/types-frontend/market-time.d.ts +0 -1
- package/dist/types-frontend/market-time.d.ts.map +1 -1
- package/dist/types-frontend/types/llm-types.d.ts +7 -0
- package/dist/types-frontend/types/llm-types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index-frontend.mjs
CHANGED
|
@@ -7390,7 +7390,7 @@ const makeResponsesAPICall = async (input, options = {}) => {
|
|
|
7390
7390
|
* });
|
|
7391
7391
|
*/
|
|
7392
7392
|
async function makeLLMCall(input, options = {}) {
|
|
7393
|
-
const { apiKey, model = DEFAULT_MODEL$1, responseFormat = 'text', tools, useCodeInterpreter = false, useWebSearch = false, imageBase64, imageDetail = 'high', context } = options;
|
|
7393
|
+
const { apiKey, model = DEFAULT_MODEL$1, responseFormat = 'text', tools, useCodeInterpreter = false, useWebSearch = false, imageBase64, imageDetail = 'high', context, } = options;
|
|
7394
7394
|
// Validate model
|
|
7395
7395
|
const normalizedModel = normalizeModelName(model);
|
|
7396
7396
|
if (!isSupportedModel(normalizedModel)) {
|
|
@@ -7406,7 +7406,7 @@ async function makeLLMCall(input, options = {}) {
|
|
|
7406
7406
|
conversationMessages.push({
|
|
7407
7407
|
role: contextMsg.role,
|
|
7408
7408
|
content: contextMsg.content,
|
|
7409
|
-
type: 'message'
|
|
7409
|
+
type: 'message',
|
|
7410
7410
|
});
|
|
7411
7411
|
}
|
|
7412
7412
|
// Add current input message
|
|
@@ -7420,9 +7420,9 @@ async function makeLLMCall(input, options = {}) {
|
|
|
7420
7420
|
type: 'input_image',
|
|
7421
7421
|
detail: imageDetail,
|
|
7422
7422
|
image_url: imageBase64.startsWith('data:') ? imageBase64 : `data:image/webp;base64,${imageBase64}`,
|
|
7423
|
-
}
|
|
7423
|
+
},
|
|
7424
7424
|
],
|
|
7425
|
-
type: 'message'
|
|
7425
|
+
type: 'message',
|
|
7426
7426
|
});
|
|
7427
7427
|
}
|
|
7428
7428
|
else {
|
|
@@ -7430,7 +7430,7 @@ async function makeLLMCall(input, options = {}) {
|
|
|
7430
7430
|
conversationMessages.push({
|
|
7431
7431
|
role: 'user',
|
|
7432
7432
|
content: input,
|
|
7433
|
-
type: 'message'
|
|
7433
|
+
type: 'message',
|
|
7434
7434
|
});
|
|
7435
7435
|
}
|
|
7436
7436
|
processedInput = conversationMessages;
|
|
@@ -7446,10 +7446,10 @@ async function makeLLMCall(input, options = {}) {
|
|
|
7446
7446
|
type: 'input_image',
|
|
7447
7447
|
detail: imageDetail,
|
|
7448
7448
|
image_url: imageBase64.startsWith('data:') ? imageBase64 : `data:image/webp;base64,${imageBase64}`,
|
|
7449
|
-
}
|
|
7449
|
+
},
|
|
7450
7450
|
],
|
|
7451
|
-
type: 'message'
|
|
7452
|
-
}
|
|
7451
|
+
type: 'message',
|
|
7452
|
+
},
|
|
7453
7453
|
];
|
|
7454
7454
|
}
|
|
7455
7455
|
else {
|
|
@@ -13662,12 +13662,10 @@ class TimeFormatter {
|
|
|
13662
13662
|
*/
|
|
13663
13663
|
class MarketTimeCalculator {
|
|
13664
13664
|
calendar;
|
|
13665
|
-
formatter;
|
|
13666
13665
|
timezone;
|
|
13667
13666
|
constructor(timezone = MARKET_CONFIG.TIMEZONE) {
|
|
13668
13667
|
this.timezone = timezone;
|
|
13669
13668
|
this.calendar = new MarketCalendar(timezone);
|
|
13670
|
-
this.formatter = new TimeFormatter(timezone);
|
|
13671
13669
|
}
|
|
13672
13670
|
/**
|
|
13673
13671
|
* Get market open/close times for a date
|