How to pin Azure or another service as the default #1376
-
Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I can help with each of these items when I am home, thanks for your patience! for now, I would say if you’re using Docker, you have to rebuild when the For default order, check out dotenv.md, there is an ENDPOINTS variable and you can also set a default preset |
Beta Was this translation helpful? Give feedback.
-
I can confirm that the following in the .env file makes this the "default" or first picked endpoint ENDPOINTS=azureOpenAI,openAI Note that the app will use your last selected endpoint when creating a new conversation. So if you used OpenAI and hit new chat, it will have OpenAI selected with default conversation settings. To override this behavior, you need a preset and preset set as default. I made a video to demonstrate: Recording.2023-12-17.184337.mp4
This needs to be addressed due to the new UI. Will look into it.
This works for me
As I said before, if you’re using Docker, you have to rebuild when the .env file is changed. Also if you're using docker, the port might have to be configured from the docker-compose file
TBD. Still need to investigate this but this isn't the case for me. By every time you visit is it on refresh? After a long period?
TBD. Will investigate but was working for me last time I used it
Made a video to demonstrate: Recording.2023-12-17.185019.mp4 |
Beta Was this translation helpful? Give feedback.
-
Thank you for the answers. Export presets works. The port issue was indeed something to be changed in the yml file. Also got Wolfram working. Not sure what I did wrong earlier?? But working fine now. Regarding the repeated page login, it happens irrespective of the duration. Even refreshing the chat page triggers it. |
Beta Was this translation helpful? Give feedback.
I can confirm that the following in the .env file makes this the "default" or first picked endpoint
Note that the app will use your last selected endpoint when creating a new conversation. So if you used OpenAI and hit new chat, it will have OpenAI selected with default conversation settings. To override this behavior, you need a preset and preset set as default.
I made a …