import { Model } from 'sequelize-typescript'; import { Assistant } from '@/domain/models/assistant.interface'; import type { AssistantToolResources, AssistantResponseFormatOption } from '@/domain/models/assistant.interface'; export declare class AssistantEntity extends Model implements Assistant { id: string; avatar?: string; object: 'assistant'; created_at: number; name: string | null; description: string | null; model: string; instructions: string | null; tools: any; metadata: any | null; top_p: number | null; temperature: number | null; response_format: AssistantResponseFormatOption | null; tool_resources: AssistantToolResources | null; }