diff --git a/.env.example b/.env.example index 968e93484..126bd5f20 100644 --- a/.env.example +++ b/.env.example @@ -29,5 +29,11 @@ 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= + # Include this environment variable if you want more logging for debugging locally VITE_LOG_LEVEL=debug diff --git a/app/components/chat/BaseChat.tsx b/app/components/chat/BaseChat.tsx index b7421349e..c1175f700 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 (
-