chatgpt-optimized-official
Version:
ChatGPT Client using official OpenAI API
20 lines (18 loc) • 396 B
text/typescript
interface Options {
model?: string;
temperature?: number;
max_tokens?: number;
top_p?: number;
frequency_penalty?: number;
presence_penalty?: number;
instructions?: string;
stop?: string;
aiName?: string;
moderation?: boolean;
endpoint?: string;
price?: number;
max_conversation_tokens?: number;
functions?:[];
function_call?: string;
}
export default Options;