import OpenAISettings from './OpenAI/Settings.jsx'; import BingAISettings from './BingAI/Settings.jsx'; import GoogleSettings from './Google/Settings.jsx'; import PluginsSettings from './Plugins/Settings.jsx'; import AnthropicSettings from './Anthropic/Settings.jsx'; // A preset dialog to show readonly preset values. const Settings = ({ preset, ...props }) => { const renderSettings = () => { const { endpoint } = preset || {}; if (endpoint === 'openAI' || endpoint === 'azureOpenAI') { return ( ); } else if (endpoint === 'bingAI') { return ( ); } else if (endpoint === 'google') { return ( ); } else if (endpoint === 'anthropic') { return ( ); } else if (endpoint === 'gptPlugins') { return ( ); } else { return
Not implemented
; } }; return renderSettings(); }; export default Settings;