import { EModelEndpoint } from 'librechat-data-provider'; import type { TModelSelectProps } from '~/common'; import type { FC } from 'react'; import OpenAI from './OpenAI'; import BingAI from './BingAI'; import Google from './Google'; import Plugins from './Plugins'; import ChatGPT from './ChatGPT'; import Anthropic from './Anthropic'; import PluginsByIndex from './PluginsByIndex'; export const options: { [key: string]: FC } = { [EModelEndpoint.openAI]: OpenAI, [EModelEndpoint.azureOpenAI]: OpenAI, [EModelEndpoint.bingAI]: BingAI, [EModelEndpoint.google]: Google, [EModelEndpoint.gptPlugins]: Plugins, [EModelEndpoint.anthropic]: Anthropic, [EModelEndpoint.chatGPTBrowser]: ChatGPT, }; export const multiChatOptions = { ...options, [EModelEndpoint.gptPlugins]: PluginsByIndex, };