| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import { generateText, Output } from 'ai'
- import { source } from 'common-tags'
- import { NextApiRequest, NextApiResponse } from 'next'
- import { z } from 'zod'
- import { getModel } from '@/lib/ai/model'
- import { DEFAULT_COMPLETION_MODEL } from '@/lib/ai/model.utils'
- import apiWrapper from '@/lib/api/apiWrapper'
- const titleSchema = z.object({
- title: z
- .string()
- .describe(
- 'The generated title for the SQL snippet (short and concise). Omit these words: "SQL", "Postgres", "Query", "Database"'
- ),
- description: z.string().describe('The generated description for the SQL snippet.'),
- })
- async function handler(req: NextApiRequest, res: NextApiResponse) {
- 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
- if (!sql) {
- return res.status(400).json({
- error: 'SQL query is required',
- })
- }
- try {
- const { modelParams, error: modelError } = await getModel({
- provider: 'openai',
- modelEntry: DEFAULT_COMPLETION_MODEL,
- })
- if (modelError) {
- return res.status(500).json({ error: modelError.message })
- }
- const result = await generateText({
- ...modelParams,
- output: Output.object({ schema: titleSchema }),
- prompt: source`
- Generate a short title and summarized description for this Postgres SQL snippet:
- ${sql}
- The description should describe why this table was created (eg. "Table to track todos") or what the query does.
- `,
- })
- return res.json(result.output)
- } catch (error) {
- if (error instanceof Error) {
- console.error(`AI title generation failed: ${error.message}`)
- // Check for context length error
- if (error.message.includes('context_length') || error.message.includes('too long')) {
- return res.status(400).json({
- error:
- 'Your SQL query is too large for Briven Assistant 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, { withAuth: true })
- export default wrapper
|