import { EModelEndpoint } from 'librechat-data-provider'; import type { SwitcherProps } from '~/common'; import { Separator } from '~/components/ui/Separator'; import AssistantSwitcher from './AssistantSwitcher'; import ModelSwitcher from './ModelSwitcher'; export default function Switcher(props: SwitcherProps) { if (props.endpoint === EModelEndpoint.assistants && props.endpointKeyProvided) { return ( <> ); } else if (props.endpoint === EModelEndpoint.assistants) { return null; } return ( <> ); }