UNPKG

@aituber-onair/core

Version:

Core library for AITuber OnAir providing voice synthesis and chat processing

18 lines 493 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, }; /** * Default max tokens for AI providers when not specified */ export const DEFAULT_MAX_TOKENS = 1000; //# sourceMappingURL=chat.js.map