Julian Keenaghan
Julian Keenaghan
This is what I'm doing to support multiple models in Azure which is working fine. ```ruby module OpenAi class Client def self.client(deployment_id) OpenAI::Client.new( uri_base: "https://***.openai.azure.com/openai/deployments/#{deployment_id}" ) end def self.default client("gpt-35-turbo")...
I'm getting this too!
Thanks. I am trying to trying to set the `WEBHOOK_AUTH_TOKEN` as documented [here](https://cog.run/environment/#webhook_auth_token).
Yes I am. The webhooks are all working fine. I just would like to be able to set this `WEBHOOK_AUTH_TOKEN` for extra security at my webhook endpoint.