@juspay/neurolink
Version:
Universal AI Development Platform with external MCP server integration, multi-provider support, and professional CLI. Connect to 65+ MCP servers for filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 9 major pr
32 lines (31 loc) • 1.04 kB
JavaScript
/**
* Provider exports for Vercel AI SDK integration
* This file centralizes all AI provider classes for easy import and usage
*/
export { GoogleVertexAI } from './googleVertexAI.js';
export { AmazonBedrock } from './amazonBedrock.js';
export { OpenAI } from './openAI.js';
export { AnthropicProvider } from './anthropic.js';
export { AzureOpenAIProvider } from './azureOpenAI.js';
export { GoogleAIStudio } from './googleAIStudio.js';
export { HuggingFace } from './huggingFace.js';
export { Ollama } from './ollama.js';
export { MistralAI } from './mistralAI.js';
/**
* Provider registry for dynamic provider instantiation
*/
export const PROVIDERS = {
vertex: 'GoogleVertexAI',
bedrock: 'AmazonBedrock',
openai: 'OpenAI',
anthropic: 'AnthropicProvider',
azure: 'AzureOpenAIProvider',
'google-ai': 'GoogleAIStudio',
huggingface: 'HuggingFace',
ollama: 'Ollama',
mistral: 'MistralAI'
};
/**
* List of all available provider names
*/
export const AVAILABLE_PROVIDERS = Object.keys(PROVIDERS);