UNPKG

@aituber-onair/core

Version:

Core library for AITuber OnAir providing voice synthesis and chat processing

14 lines (13 loc) 423 B
export declare const CHAT_RESPONSE_LENGTH: { readonly VERY_SHORT: "veryShort"; readonly SHORT: "short"; readonly MEDIUM: "medium"; readonly LONG: "long"; }; export declare const MAX_TOKENS_BY_LENGTH: { readonly veryShort: 40; readonly short: 100; readonly medium: 200; readonly long: 300; }; export type ChatResponseLength = (typeof CHAT_RESPONSE_LENGTH)[keyof typeof CHAT_RESPONSE_LENGTH];