public inbox for [email protected]
help / color / mirror / Atom feedFrom: pg_llm_helper via PostgreSQL Announce <[email protected]>
To: PostgreSQL Announce <[email protected]>
Subject: pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model
Date: Fri, 19 Dec 2025 01:22:12 +0000
Message-ID: <[email protected]> (raw)
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!
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected]
Subject: Re: pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox