UNPKG

@aituber-onair/core

Version:

Core library for AITuber OnAir providing voice synthesis and chat processing

14 lines 387 B
// chat response length export const CHAT_RESPONSE_LENGTH = { VERY_SHORT: 'veryShort', SHORT: 'short', MEDIUM: 'medium', LONG: 'long', }; export const MAX_TOKENS_BY_LENGTH = { [CHAT_RESPONSE_LENGTH.VERY_SHORT]: 40, [CHAT_RESPONSE_LENGTH.SHORT]: 100, [CHAT_RESPONSE_LENGTH.MEDIUM]: 200, [CHAT_RESPONSE_LENGTH.LONG]: 300, }; //# sourceMappingURL=chat.js.map