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;
