diff --git a/.env.example b/.env.example index 15978eeb..d5cfc5cb 100644 --- a/.env.example +++ b/.env.example @@ -29,6 +29,12 @@ GOOGLE_GENERATIVE_AI_API_KEY= # EXAMPLE http://localhost:11434 OLLAMA_API_BASE_URL= +# You only need this environment variable set if you want to use OpenAI Like models +OPENAI_LIKE_API_BASE_URL= + +# Get your OpenAI Like API Key +OPENAI_LIKE_API_KEY= + # Get your Mistral API Key by following these instructions - # https://console.mistral.ai/api-keys/ # You only need this environment variable set if you want to use Mistral models diff --git a/app/components/chat/BaseChat.tsx b/app/components/chat/BaseChat.tsx index b7421349..c1175f70 100644 --- a/app/components/chat/BaseChat.tsx +++ b/app/components/chat/BaseChat.tsx @@ -28,7 +28,7 @@ const ModelSelector = ({ model, setModel, modelList, providerList }) => { const [provider, setProvider] = useState(DEFAULT_PROVIDER); return (
-