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

From: pg_llm_helper via PostgreSQL Announce <announce-noreply(at)postgresql(dot)org>
To: PostgreSQL Announce <pgsql-announce(at)lists(dot)postgresql(dot)org>
Subject: pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model
Date: 2025-12-19 01:22:12
Message-ID: 176610733279.978868.13801864668558436182@wrigleys.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-announce

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:

* [https://github.com/GeoffMontee/pg_llm_helper/issues](https://github.com/GeoffMontee/pg_llm_helper/issues)
* [https://github.com/GeoffMontee/pg_llm_helper/releases/tag/v0.1.0](https://github.com/GeoffMontee/pg_llm_helper/releases/tag/v0.1.0)

Thank you!

Browse pgsql-announce by date

  From Date Subject
Next Message scylla_fdw via PostgreSQL Announce 2025-12-22 04:47:58 scylla_fdw - PostgreSQL Foreign Data Wrapper for ScyllaDB
Previous Message tds_fdw via PostgreSQL Announce 2025-12-19 01:20:58 tds_fdw - Write support is available for testing