sujitswaroop

Results 2 comments of sujitswaroop

Check if your AJAX call is set to false (async: false), if not then the chances are that you have some extensions running on your browser that do a synchronous...

This is what fixed it for me def get_azure_open_ai_initialized(): openai.api_type = "azure" openai.api_version = "2023-05-15" config = dotenv_values(".env") openai.api_base = config['OPENAI_API_BASE'] # Your Azure OpenAI resource's endpoint value . openai.api_key...