generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
29 lines (28 loc) • 1.04 kB
TypeScript
import { ChatCompletionMessage } from 'openai/resources/index.js';
import { ChatLogs, FunctionDefinition } from './index.js';
export declare const LlmRoles: {
readonly System: 'system';
readonly User: 'user';
readonly Assistant: 'assistant';
readonly Function: 'function';
};
export declare type LlmRole = (typeof LlmRoles)[keyof typeof LlmRoles];
export declare const LlmModels: {
readonly GPT3: 'gpt-3.5-turbo-1106';
readonly GPT3_16k: 'gpt-3.5-turbo-16k';
readonly GPT4: 'gpt-4';
readonly GPT4_32k: 'gpt-4-32k';
readonly GPT4_TURBO: 'gpt-4-turbo';
};
export declare type LlmModel = (typeof LlmModels)[keyof typeof LlmModels];
export interface LlmOptions {
temperature?: number;
max_tokens?: number;
model?: LlmModel;
}
export interface LlmApi {
getMaxContextTokens(): number;
getMaxResponseTokens(): number;
getModel(): LlmModel;
getResponse(chatLog: ChatLogs, functionDefinitions?: FunctionDefinition[], options?: LlmOptions): Promise<ChatCompletionMessage | undefined>;
}