import { InquirerService } from 'nest-commander'; import { CortexUsecases } from '@/usecases/cortex/cortex.usecases'; import { BaseCommand } from './base.command'; import { Cortex } from '@cortexso/cortex.js'; interface EmbeddingCommandOptions { encoding_format?: string; input?: string; dimensions?: number; } export declare class EmbeddingCommand extends BaseCommand { private readonly inquirerService; readonly cortexUsecases: CortexUsecases; constructor(inquirerService: InquirerService, cortexUsecases: CortexUsecases); runCommand(passedParams: string[], options: EmbeddingCommandOptions): Promise; modelInquiry: (models: Cortex.Model[]) => Promise; parseInput(value: string): string; parseEncodingFormat(value: string): string; parseDimensionsFormat(value: string): string; } export {};