We are thrilled to announce the general availability of the azure_ai extension on Azure Database for PostgreSQL. The azure_ai extension allows developers to seamlessly integrate Azure AI services from within their database using SQL queries. In conjunction with vector data this simplifies building Gen AI applications on Azure Database for PostgreSQL.
With the azure_ai extension, you can now access Azure OpenAI, Azure AI Language services, Azure Translation and Azure Machine learning services with simple function calls from within SQL.
The azure_ai extension enables
If you have installed the azure_ai extension a while ago, you can compare the currently installed version to the newest version allowed by using the SQL command and upgrade it to the latest version
--check the currently installed and the latest version
SELECT * FROM pg_available_extensions
WHERE name = 'azure_ai'
-- Issue an update if the installed version isn't the latest version
ALTER EXTENSION azure_ai UPDATE;
To learn more about the azure_ai extension, and how it simplifies building GenAI applications on, visit our documentation below:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.