UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

30 lines (29 loc) 1.23 kB
import { type LanguageModel } from "ai"; import type { AIProviderName } from "../constants/enums.js"; import { BaseProvider } from "../core/baseProvider.js"; import type { NeurolinkCredentials, StreamOptions, StreamResult, ValidationSchema } from "../types/index.js"; /** * DeepSeek Provider * OpenAI-compatible chat completions; supports deepseek-chat (V3) and * deepseek-reasoner (R1, exposes reasoning_content). */ export declare class DeepSeekProvider extends BaseProvider { private model; private apiKey; private baseURL; constructor(modelName?: string, sdk?: unknown, _region?: string, credentials?: NeurolinkCredentials["deepseek"]); protected executeStream(options: StreamOptions, _analysisSchema?: ValidationSchema): Promise<StreamResult>; private executeStreamInner; protected getProviderName(): AIProviderName; protected getDefaultModel(): string; protected getAISDKModel(): LanguageModel; protected formatProviderError(error: unknown): Error; validateConfiguration(): Promise<boolean>; getConfiguration(): { provider: AIProviderName; model: string; defaultModel: string; baseURL: string; }; } export default DeepSeekProvider;