mirror of
https://github.com/supabase/supabase.git
synced 2026-07-07 07:30:21 +08:00
* refactor: ai sql logic to common package * feat: ai sql tests * feat: test rls policy ai chat assistant * refactor: jest env loading * feat(ai): improve sql title and description quality * fix: ai message role type * Move the new files to a separate package. * Remove a forgotten console.log. * Migrate the tests to use snapshots and commit the snapshots. * Separate the functions which require edge runtime to be exported via /edge subpath. * Bust the turbo cache when one of the deps has been rebuilt. * chore: fix package main/type references * fix: package lock out of sync * fix: ai sql debugging to fix typos --------- Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { ContextLengthError, titleSql } from 'ai-commands'
|
|
import apiWrapper from 'lib/api/apiWrapper'
|
|
import { NextApiRequest, NextApiResponse } from 'next'
|
|
import { OpenAI } from 'openai'
|
|
|
|
const openAiKey = process.env.OPENAI_KEY
|
|
const openai = new OpenAI({ apiKey: openAiKey })
|
|
|
|
async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
if (!openAiKey) {
|
|
return res.status(500).json({
|
|
error: 'No OPENAI_KEY set. Create this environment variable to use AI features.',
|
|
})
|
|
}
|
|
|
|
const { method } = req
|
|
|
|
switch (method) {
|
|
case 'POST':
|
|
return handlePost(req, res)
|
|
default:
|
|
res.setHeader('Allow', ['POST'])
|
|
res.status(405).json({ data: null, error: { message: `Method ${method} Not Allowed` } })
|
|
}
|
|
}
|
|
|
|
export async function handlePost(req: NextApiRequest, res: NextApiResponse) {
|
|
const {
|
|
body: { sql },
|
|
} = req
|
|
|
|
try {
|
|
const result = await titleSql(openai, sql)
|
|
return res.json(result)
|
|
} catch (error) {
|
|
if (error instanceof Error) {
|
|
console.error(`AI title generation failed: ${error.message}`)
|
|
|
|
if (error instanceof ContextLengthError) {
|
|
return res.status(400).json({
|
|
error:
|
|
'Your SQL query is too large for Supabase AI to ingest. Try splitting it into smaller queries.',
|
|
})
|
|
}
|
|
} else {
|
|
console.log(`Unknown error: ${error}`)
|
|
}
|
|
|
|
return res.status(500).json({
|
|
error: 'There was an unknown error generating the snippet title. Please try again.',
|
|
})
|
|
}
|
|
}
|
|
|
|
const wrapper = (req: NextApiRequest, res: NextApiResponse) => apiWrapper(req, res, handler)
|
|
|
|
export default wrapper
|