The Azure OpenAI Service provides access to OpenAI's models including the GPT-4, GPT-4 Turbo with Vision, GPT-3.5-Turbo, DALLE-3 and Embeddings model series with the security and enterprise capabilities of Azure.
This is the "brains" of Vee.
-
Run the following command to create an Azure OpenAI resource in the practical-[tmdbapi] resource group.
az cognitiveservices account create \ -n practical-[tmdbapi] \ -g practical-ai \ -l eastus \ --kind OpenAI \ --sku s0 \ --custom-domain practical-[tmdbapi]
-
Create the model deployments for
text-embedding-ada-002
andgpt-35-turbo
in your Azure OpenAI service.az cognitiveservices account deployment create \ -g practical-ai \ -n practical-[tmdbapi] \ --deployment-name text-embedding-ada-002 \ --model-name text-embedding-ada-002 \ --model-version "2" \ --model-format OpenAI az cognitiveservices account deployment create \ -g practical-ai \ -n practical-[tmdbapi] \ --deployment-name gpt-35-turbo \ --model-name gpt-35-turbo \ --model-version "0301" \ --model-format OpenAI