Files
supabase/apps/studio/pages/api/ai/feedback/classify.ts
Joshen Lim dc23320e43 Add sentry capture exception to apiWrapper (#47804)
## Context

As per PR title - also adjusts the imports for files consuming
`apiWrapper` to remove the default export for `apiWrapper`

Have tested locally by throwing an error in one of the API routes -
verified that the event shows up on Sentry

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **Bug Fixes**
* API errors are now captured in Sentry before returning server error
responses, improving production visibility while keeping endpoint
behavior the same.
* **Tests**
* Added coverage to confirm rejected handler executions are reported to
Sentry and return the expected HTTP 500 JSON payload.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2026-07-10 16:28:42 +08:00

124 lines
3.9 KiB
TypeScript

import { generateText, Output } from 'ai'
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'
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: { prompt },
} = req
if (!prompt) {
return res.status(400).json({
error: 'Prompt 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 { output } = await generateText({
...modelParams,
output: Output.object({
schema: z.object({
feedback_category: z.enum(['support', 'feedback', 'unknown']),
}),
}),
temperature: 0,
prompt: `
Classify the following feedback as ONE of: support, feedback, unknown.
- support: bug reports, help requests, or issues
- feedback: feature requests or suggestions
- unknown: unclear or unrelated
If you can't determine support or feedback, always output "unknown".
Only output a JSON object in this format: { "feedback_category": "support|feedback|unknown" }
Examples:
Feedback: "Whenever I try to invite a team member, the invite email doesn't get sent."
Response: { "feedback_category": "support" }
Feedback: "I have reached the storage limit for my project and my plan. I cannot understand how I can expand the storage space in my project."
Response: { "feedback_category": "support" }
Feedback: "Please delete the project x in my account"
Response: { "feedback_category": "support" }
Feedback: "My billing page is broken"
Response: { "feedback_category": "support" }
Feedback: "I accidentally deleted my database—can it be recovered?"
Response: { "feedback_category": "support" }
Feedback: "My login tokens are expiring too quickly, even though I didn't change any settings."
Response: { "feedback_category": "support" }
Feedback: "Can you add more integrations?"
Response: { "feedback_category": "feedback" }
Feedback: "I'm getting charged for a project I thought I deleted. Can you help me stop billing?"
Response: { "feedback_category": "support" }
Feedback: "Could you support OAuth login for more providers like Apple or LinkedIn?"
Response: { "feedback_category": "feedback" }
Feedback: "It's unclear in the docs how to set up row-level security with multiple roles."
Response: { "feedback_category": "feedback" }
Feedback: "I am trying to pause my Pro project"
Response: { "feedback_category": "feedback" }
Feedback: "${prompt}"
Response:
`,
})
return res.json({ feedback_category: output.feedback_category })
} catch (error) {
if (error instanceof Error) {
console.error(`Classifying this feedback failed`)
// Check for context length error
if (error.message.includes('context_length') || error.message.includes('too long')) {
return res.status(400).json({
error: 'This prompt is too large to ingest',
})
}
} else {
console.error(`Unknown error: ${error}`)
}
return res.status(500).json({
error: 'There was an unknown error generating the feedback category.',
})
}
}
const wrapper = (req: NextApiRequest, res: NextApiResponse) =>
apiWrapper(req, res, handler, { withAuth: true })
export default wrapper