pg_llm_helper 0.1.0 – Solución de problemas con el modelo gpt-4o-mini de OpenAI
Anunciamos el lanzamiento inicial de la extensión pg_llm_helper para PostgreSQL.
Esta extensión integra el modelo gpt-4o-mini de OpenAI directamente en PostgreSQL para facilitar la resolución de errores.
Ejemplo de uso:
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)
Esta versión preliminar ha sido probada hasta ahora con PostgreSQL 17.
Si tienen algún problema, pueden reportarlo en GitHub:
- https://github.com/GeoffMontee/pg_llm_helper/issues
- https://github.com/GeoffMontee/pg_llm_helper/releases/tag/v0.1.0
¡Gracias!
Haz clic aquí para leer la noticia original en inglés en la página web oficial de PostgreSQL.

