/// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// import { Schema, Document } from 'mongoose'; export interface IPreset extends Document { presetId: string; title: string; user: string | null; defaultPreset?: boolean; order?: number; endpoint?: string; endpointType?: string; model?: string; region?: string; chatGptLabel?: string; examples?: unknown[]; modelLabel?: string; promptPrefix?: string; temperature?: number; top_p?: number; topP?: number; topK?: number; maxOutputTokens?: number; maxTokens?: number; presence_penalty?: number; frequency_penalty?: number; file_ids?: string[]; resendImages?: boolean; promptCache?: boolean; thinking?: boolean; thinkingBudget?: number; effort?: string; system?: string; resendFiles?: boolean; imageDetail?: string; agent_id?: string; assistant_id?: string; instructions?: string; stop?: string[]; isArchived?: boolean; iconURL?: string; greeting?: string; spec?: string; tags?: string[]; tools?: string[]; maxContextTokens?: number; max_tokens?: number; reasoning_effort?: string; reasoning_summary?: string; verbosity?: string; useResponsesApi?: boolean; web_search?: boolean; disableStreaming?: boolean; fileTokenLimit?: number; tenantId?: string; } declare const presetSchema: Schema; export default presetSchema;