When I pass OPENAI_API_MODEL from docker env like this:
docker run --name chatgpt-web -d -p 127.0.0.1:3002:3002 -e OPENAI_API_KEY=your_api_key -e OPENAI_API_MODEL="gpt-4-turbo-preview" chatgpt-web. it seems not working.
Anyway to change the model at runtime and show the current model used in the page?
When I pass
OPENAI_API_MODEL
from docker env like this:docker run --name chatgpt-web -d -p 127.0.0.1:3002:3002 -e OPENAI_API_KEY=your_api_key -e OPENAI_API_MODEL="gpt-4-turbo-preview" chatgpt-web
. it seems not working.Anyway to change the model at runtime and show the current model used in the page?