mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 08:20:14 +01:00
* 🧹 chore: Update logger imports to use @librechat/data-schemas across multiple files and remove unused sleep function from queue.js (#9930) * chore: Replace local isEnabled utility with @librechat/api import across multiple files, update test files * chore: Replace local logger import with @librechat/data-schemas logger in countTokens.js and fork.js * chore: Update logs volume path in docker-compose.yml to correct directory * chore: import order of isEnabled in static.js
127 lines
4.1 KiB
JavaScript
127 lines
4.1 KiB
JavaScript
const { logger } = require('@librechat/data-schemas');
|
|
const { createTransaction, createStructuredTransaction } = require('./Transaction');
|
|
/**
|
|
* Creates up to two transactions to record the spending of tokens.
|
|
*
|
|
* @function
|
|
* @async
|
|
* @param {txData} txData - Transaction data.
|
|
* @param {Object} tokenUsage - The number of tokens used.
|
|
* @param {Number} tokenUsage.promptTokens - The number of prompt tokens used.
|
|
* @param {Number} tokenUsage.completionTokens - The number of completion tokens used.
|
|
* @returns {Promise<void>} - Returns nothing.
|
|
* @throws {Error} - Throws an error if there's an issue creating the transactions.
|
|
*/
|
|
const spendTokens = async (txData, tokenUsage) => {
|
|
const { promptTokens, completionTokens } = tokenUsage;
|
|
logger.debug(
|
|
`[spendTokens] conversationId: ${txData.conversationId}${
|
|
txData?.context ? ` | Context: ${txData?.context}` : ''
|
|
} | Token usage: `,
|
|
{
|
|
promptTokens,
|
|
completionTokens,
|
|
},
|
|
);
|
|
let prompt, completion;
|
|
try {
|
|
if (promptTokens !== undefined) {
|
|
prompt = await createTransaction({
|
|
...txData,
|
|
tokenType: 'prompt',
|
|
rawAmount: promptTokens === 0 ? 0 : -Math.max(promptTokens, 0),
|
|
});
|
|
}
|
|
|
|
if (completionTokens !== undefined) {
|
|
completion = await createTransaction({
|
|
...txData,
|
|
tokenType: 'completion',
|
|
rawAmount: completionTokens === 0 ? 0 : -Math.max(completionTokens, 0),
|
|
});
|
|
}
|
|
|
|
if (prompt || completion) {
|
|
logger.debug('[spendTokens] Transaction data record against balance:', {
|
|
user: txData.user,
|
|
prompt: prompt?.prompt,
|
|
promptRate: prompt?.rate,
|
|
completion: completion?.completion,
|
|
completionRate: completion?.rate,
|
|
balance: completion?.balance ?? prompt?.balance,
|
|
});
|
|
} else {
|
|
logger.debug('[spendTokens] No transactions incurred against balance');
|
|
}
|
|
} catch (err) {
|
|
logger.error('[spendTokens]', err);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Creates transactions to record the spending of structured tokens.
|
|
*
|
|
* @function
|
|
* @async
|
|
* @param {txData} txData - Transaction data.
|
|
* @param {Object} tokenUsage - The number of tokens used.
|
|
* @param {Object} tokenUsage.promptTokens - The number of prompt tokens used.
|
|
* @param {Number} tokenUsage.promptTokens.input - The number of input tokens.
|
|
* @param {Number} tokenUsage.promptTokens.write - The number of write tokens.
|
|
* @param {Number} tokenUsage.promptTokens.read - The number of read tokens.
|
|
* @param {Number} tokenUsage.completionTokens - The number of completion tokens used.
|
|
* @returns {Promise<void>} - Returns nothing.
|
|
* @throws {Error} - Throws an error if there's an issue creating the transactions.
|
|
*/
|
|
const spendStructuredTokens = async (txData, tokenUsage) => {
|
|
const { promptTokens, completionTokens } = tokenUsage;
|
|
logger.debug(
|
|
`[spendStructuredTokens] conversationId: ${txData.conversationId}${
|
|
txData?.context ? ` | Context: ${txData?.context}` : ''
|
|
} | Token usage: `,
|
|
{
|
|
promptTokens,
|
|
completionTokens,
|
|
},
|
|
);
|
|
let prompt, completion;
|
|
try {
|
|
if (promptTokens) {
|
|
const { input = 0, write = 0, read = 0 } = promptTokens;
|
|
prompt = await createStructuredTransaction({
|
|
...txData,
|
|
tokenType: 'prompt',
|
|
inputTokens: -input,
|
|
writeTokens: -write,
|
|
readTokens: -read,
|
|
});
|
|
}
|
|
|
|
if (completionTokens) {
|
|
completion = await createTransaction({
|
|
...txData,
|
|
tokenType: 'completion',
|
|
rawAmount: -completionTokens,
|
|
});
|
|
}
|
|
|
|
if (prompt || completion) {
|
|
logger.debug('[spendStructuredTokens] Transaction data record against balance:', {
|
|
user: txData.user,
|
|
prompt: prompt?.prompt,
|
|
promptRate: prompt?.rate,
|
|
completion: completion?.completion,
|
|
completionRate: completion?.rate,
|
|
balance: completion?.balance ?? prompt?.balance,
|
|
});
|
|
} else {
|
|
logger.debug('[spendStructuredTokens] No transactions incurred against balance');
|
|
}
|
|
} catch (err) {
|
|
logger.error('[spendStructuredTokens]', err);
|
|
}
|
|
|
|
return { prompt, completion };
|
|
};
|
|
|
|
module.exports = { spendTokens, spendStructuredTokens };
|