@aituber-onair/core
Version:
Core library for AITuber OnAir providing voice synthesis and chat processing
18 lines (17 loc) • 537 B
TypeScript
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;
};
/**
* Default max tokens for AI providers when not specified
*/
export declare const DEFAULT_MAX_TOKENS = 1000;
export type ChatResponseLength = (typeof CHAT_RESPONSE_LENGTH)[keyof typeof CHAT_RESPONSE_LENGTH];