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];
