pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model - Mailing list pgsql-announce

From pg_llm_helper via PostgreSQL Announce
Subject pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model
Date
Msg-id 176610733279.978868.13801864668558436182@wrigleys.postgresql.org
Whole thread Raw
List pgsql-announce
 

pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model

We are announcing the initial release of the pg_llm_helper extension for PostgreSQL.

This extension integrates OpenAI's gpt-4o-mini model directly into PostgreSQL for help with troubleshooting errors.

Example usage:

postgres=# SELLECT 1;
ERROR:  syntax error at or near "SELLECT"
LINE 1: SELLECT 1;        ^
postgres=# SELECT llm_help_last_error();                                                            llm_help_last_error
------------------------------------------------------------------------------------------------------------------------------------------- The error indicates that there is a syntax error in your SQL query. The keyword "SELLECT" is misspelled; the correct keyword is "SELECT".+                                                                                                                                      + **Fix:**                                                                                                                                 +  Correct the spelling in your query:                                                                                                      +                                                                                                                                      +                                                                                                                         + SELECT 1;                                                                                                                                +

(1 row)

This pre-release version has been tested with PostgreSQL 17 so far.

If you have any issues, please report them on GitHub:

Thank you!

 

pgsql-announce by date:

Previous
From: tds_fdw via PostgreSQL Announce
Date:
Subject: tds_fdw - Write support is available for testing
Next
From: scylla_fdw via PostgreSQL Announce
Date:
Subject: scylla_fdw - PostgreSQL Foreign Data Wrapper for ScyllaDB