From the course: Azure AI for Developers: OpenAI Services and Generative AI Models

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

What kind of models are available?

What kind of models are available?

- [Instructor] Azure offers multiple OpenAI models. Let's have a quick look which ones there are and what they are for. The GPT models are used for text generation. You have the chat functionality which keeps track of the context of the whole conversation, and we have the completion functionality, which can handle advanced commands to generate text. The second model type is embedding models. Embedding models will convert text into a vector of numbers. That way we can search, find similar, cluster or classify documents. The Codex models could be compared to the GPT models, but with the biggest difference is that it will not return text, but will return parts of code. For example, in Python or C#. For example, we have GitHub Copilot who will assist software developers to write code more efficiently. So, in this example on the screen, a software developer might add a command in his code saying, "I need a function that checks if a string is an email address." At that moment, the Codex…

Contents