Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vWPD1-000VSi-2J for pgsql-announce@arkaria.postgresql.org; Fri, 19 Dec 2025 01:23:08 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1vWPD0-0054xf-1w for pgsql-announce@arkaria.postgresql.org; Fri, 19 Dec 2025 01:23:07 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vWPCz-0054xW-2N for pgsql-announce@lists.postgresql.org; Fri, 19 Dec 2025 01:23:06 +0000 Received: from mahout.postgresql.org ([2001:4800:3e1:1::227]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vWPCz-001QH5-0W for pgsql-announce@lists.postgresql.org; Fri, 19 Dec 2025 01:23:05 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=postgresql.org; s=20171124; h=Message-ID:Date:Reply-To:From:To:Subject: MIME-Version:Content-Type:Sender:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:In-Reply-To:References; bh=9S991SN4eVSu4zck8pADOhopodGTAZ+osaXcV2+O3Ic=; b=FDxa7Ka8FyUXQjPxFvqKUWloQ9 e9G0Dsx88wVUI319/nN+py0PsE07GEULMCwMmQTtcPUi67+yCA2g7kO7xvrax7ibpqFz/pGIk4g3P ahB00ELLYK7NjQ7x9szOIBt0iYr9nKQ7plLdVAh+Wjp3IlKBhDGeQWFkaRLxP8/GNiMaghtzaZMe8 /52Azy5Xz3q37WzrhvK8XRVarZB0Fw4TCXllGEjeDVYhxJl4fVS2RrFHDUt+ZGWvBCLW+O9lMS38+ qn6tvz3D7dNrJ+WY8K1VX9f0ufcyE1XpSLfTTaAn2BM98Fy0Sa29TVaOlKIohfMY7264JWdA2OyZR tCKC/34w==; Received: from wrigleys.postgresql.org ([2a02:16a8:dc51::60]) by mahout.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vWPCy-0047jR-2n for pgsql-announce@lists.postgresql.org; Fri, 19 Dec 2025 01:23:04 +0000 Received: from localhost ([127.0.0.1] helo=wrigleys.postgresql.org) by wrigleys.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1vWPCw-007fT0-2I for pgsql-announce@lists.postgresql.org; Fri, 19 Dec 2025 01:23:03 +0000 Content-Type: multipart/mixed; boundary="===============2288098048788523845==" MIME-Version: 1.0 Subject: pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's gpt-4o-mini model To: PostgreSQL Announce From: pg_llm_helper via PostgreSQL Announce Reply-To: geoff.montee@gmail.com Date: Fri, 19 Dec 2025 01:22:12 +0000 Message-ID: <176610733279.978868.13801864668558436182@wrigleys.postgresql.org> X-Auto-Response-Suppress: All Auto-Submitted: auto-generated X-pglister-tags: related X-pglister-tagsig: 137ee05eec9967ad88ea980a399cd5760d1e067e86a86a67b3178eee861ea082 List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --===============2288098048788523845== Content-Type: multipart/alternative; boundary="===============5768012733355855385==" MIME-Version: 1.0 --===============5768012733355855385== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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 Postgr= eSQL for help with troubleshooting errors. Example usage: postgres=3D# SELLECT 1; ERROR: syntax error at or near "SELLECT" LINE 1: SELLECT 1; ^ postgres=3D# SELECT llm_help_last_error(); llm_help_la= st_error -----------------------------------------------------------------------= -------------------------------------------------------------------- The error indicates that there is a syntax error in your SQL query. Th= e 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! --===============5768012733355855385== Content-Type: text/html; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable pg_llm_helper 0.1.0 - Troubleshooting errors with OpenAI's = gpt-4o-mini model
 

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

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

This extension integrates OpenAI's gp= t-4o-mini model directly into PostgreSQL for help with troubleshooti= ng errors.

Example usage:

postgres=3D# SELLECT 1;
ERROR:  syntax error at or near "SELLECT"
LINE 1: SELLECT 1;
        ^
postgres=3D# SELECT llm_help_last_error();
                                                            llm_help_last_e=
rror
---------------------------------------------------------------------------=
----------------------------------------------------------------
 The error indicates that there is a syntax error in your SQL query. The ke=
yword "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 wi= th PostgreSQL 17 so far.

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

Thank you!

This email was sent to you from pg_llm_helper. It was delivered on their be= half by the PostgreSQL project. Any questions about the content of the message shou= ld be sent to pg_llm_helper.

You were sent this email as a subscriber of the pgsql-announce mai= linglist, for the content tag Related Open Source. To unsubscribe from further emails, or change which emails you want to receive, please click th= e personal unsubscribe link that you can find in the headers of this email, or visit https://lists.postgresql.org/unsubscribe/.
 
--===============5768012733355855385==-- --===============2288098048788523845==--