diff --git a/api/server/routes/endpoints.js b/api/server/routes/endpoints.js index 175ae08cc5..d3ec9288d7 100644 --- a/api/server/routes/endpoints.js +++ b/api/server/routes/endpoints.js @@ -39,7 +39,6 @@ router.get('/', async function (req, res) { key || palmUser ? { userProvide: palmUser, availableModels: ['chat-bison', 'text-bison'] } : false; const azureOpenAI = !!process.env.AZURE_OPENAI_KEY; const apiKey = process.env.OPENAI_KEY || process.env.AZURE_OPENAI_API_KEY; - console.log('API KEY', apiKey); const openAI = apiKey ? { availableModels: getOpenAIModels(), userProvide: apiKey === 'user_provided' } diff --git a/client/index.html b/client/index.html index e77f5dc708..d81d0bf3d4 100644 --- a/client/index.html +++ b/client/index.html @@ -3,7 +3,7 @@ - %VITE_APP_TITLE% + ChatGPT Clone {