mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-19 08:58:09 +01:00
146 lines
5 KiB
TypeScript
146 lines
5 KiB
TypeScript
|
|
import logger from '~/config/winston';
|
||
|
|
import type { TxData, TransactionResult } from './transaction';
|
||
|
|
|
||
|
|
/** Base transaction context passed by callers — does not include fields added internally */
|
||
|
|
export interface SpendTxData {
|
||
|
|
user: string | import('mongoose').Types.ObjectId;
|
||
|
|
conversationId?: string;
|
||
|
|
model?: string;
|
||
|
|
context?: string;
|
||
|
|
endpointTokenConfig?: Record<string, Record<string, number>> | null;
|
||
|
|
balance?: { enabled?: boolean };
|
||
|
|
transactions?: { enabled?: boolean };
|
||
|
|
valueKey?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function createSpendTokensMethods(
|
||
|
|
_mongoose: typeof import('mongoose'),
|
||
|
|
transactionMethods: {
|
||
|
|
createTransaction: (txData: TxData) => Promise<TransactionResult | undefined>;
|
||
|
|
createStructuredTransaction: (txData: TxData) => Promise<TransactionResult | undefined>;
|
||
|
|
},
|
||
|
|
) {
|
||
|
|
/**
|
||
|
|
* Creates up to two transactions to record the spending of tokens.
|
||
|
|
*/
|
||
|
|
async function spendTokens(
|
||
|
|
txData: SpendTxData,
|
||
|
|
tokenUsage: { promptTokens?: number; completionTokens?: number },
|
||
|
|
) {
|
||
|
|
const { promptTokens, completionTokens } = tokenUsage;
|
||
|
|
logger.debug(
|
||
|
|
`[spendTokens] conversationId: ${txData.conversationId}${
|
||
|
|
txData?.context ? ` | Context: ${txData?.context}` : ''
|
||
|
|
} | Token usage: `,
|
||
|
|
{ promptTokens, completionTokens },
|
||
|
|
);
|
||
|
|
let prompt: TransactionResult | undefined, completion: TransactionResult | undefined;
|
||
|
|
const normalizedPromptTokens = Math.max(promptTokens ?? 0, 0);
|
||
|
|
try {
|
||
|
|
if (promptTokens !== undefined) {
|
||
|
|
prompt = await transactionMethods.createTransaction({
|
||
|
|
...txData,
|
||
|
|
tokenType: 'prompt',
|
||
|
|
rawAmount: promptTokens === 0 ? 0 : -normalizedPromptTokens,
|
||
|
|
inputTokenCount: normalizedPromptTokens,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
if (completionTokens !== undefined) {
|
||
|
|
completion = await transactionMethods.createTransaction({
|
||
|
|
...txData,
|
||
|
|
tokenType: 'completion',
|
||
|
|
rawAmount: completionTokens === 0 ? 0 : -Math.max(completionTokens, 0),
|
||
|
|
inputTokenCount: normalizedPromptTokens,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
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.
|
||
|
|
*/
|
||
|
|
async function spendStructuredTokens(
|
||
|
|
txData: SpendTxData,
|
||
|
|
tokenUsage: {
|
||
|
|
promptTokens?: { input?: number; write?: number; read?: number };
|
||
|
|
completionTokens?: number;
|
||
|
|
},
|
||
|
|
) {
|
||
|
|
const { promptTokens, completionTokens } = tokenUsage;
|
||
|
|
logger.debug(
|
||
|
|
`[spendStructuredTokens] conversationId: ${txData.conversationId}${
|
||
|
|
txData?.context ? ` | Context: ${txData?.context}` : ''
|
||
|
|
} | Token usage: `,
|
||
|
|
{ promptTokens, completionTokens },
|
||
|
|
);
|
||
|
|
let prompt: TransactionResult | undefined, completion: TransactionResult | undefined;
|
||
|
|
try {
|
||
|
|
if (promptTokens) {
|
||
|
|
const input = Math.max(promptTokens.input ?? 0, 0);
|
||
|
|
const write = Math.max(promptTokens.write ?? 0, 0);
|
||
|
|
const read = Math.max(promptTokens.read ?? 0, 0);
|
||
|
|
const totalInputTokens = input + write + read;
|
||
|
|
prompt = await transactionMethods.createStructuredTransaction({
|
||
|
|
...txData,
|
||
|
|
tokenType: 'prompt',
|
||
|
|
inputTokens: -input,
|
||
|
|
writeTokens: -write,
|
||
|
|
readTokens: -read,
|
||
|
|
inputTokenCount: totalInputTokens,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
if (completionTokens) {
|
||
|
|
const totalInputTokens = promptTokens
|
||
|
|
? Math.max(promptTokens.input ?? 0, 0) +
|
||
|
|
Math.max(promptTokens.write ?? 0, 0) +
|
||
|
|
Math.max(promptTokens.read ?? 0, 0)
|
||
|
|
: undefined;
|
||
|
|
completion = await transactionMethods.createTransaction({
|
||
|
|
...txData,
|
||
|
|
tokenType: 'completion',
|
||
|
|
rawAmount: -Math.max(completionTokens, 0),
|
||
|
|
inputTokenCount: totalInputTokens,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
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 };
|
||
|
|
}
|
||
|
|
|
||
|
|
return { spendTokens, spendStructuredTokens };
|
||
|
|
}
|
||
|
|
|
||
|
|
export type SpendTokensMethods = ReturnType<typeof createSpendTokensMethods>;
|