| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import { streamText } from "ai";
- import { buildUserPrompt } from "@json-render/core";
- import { dashboardCatalog } from "@/lib/render/catalog";
- import { minuteRateLimit, dailyRateLimit } from "@/lib/rate-limit";
- import { headers } from "next/headers";
- export const maxDuration = 30;
- const SYSTEM_PROMPT = dashboardCatalog.prompt();
- const DEFAULT_MODEL = "anthropic/claude-haiku-4.5";
- export async function POST(req: Request) {
- const headersList = await headers();
- const ip = headersList.get("x-forwarded-for")?.split(",")[0] ?? "anonymous";
- const [minuteResult, dailyResult] = await Promise.all([
- minuteRateLimit.limit(ip),
- dailyRateLimit.limit(ip),
- ]);
- if (!minuteResult.success || !dailyResult.success) {
- const isMinuteLimit = !minuteResult.success;
- return new Response(
- JSON.stringify({
- error: "Rate limit exceeded",
- message: isMinuteLimit
- ? "Too many requests. Please wait a moment before trying again."
- : "Daily limit reached. Please try again tomorrow.",
- }),
- {
- status: 429,
- headers: { "Content-Type": "application/json" },
- },
- );
- }
- const { prompt, context } = await req.json();
- const userPrompt = buildUserPrompt({
- prompt,
- state: context?.state,
- });
- const result = streamText({
- model: process.env.AI_GATEWAY_MODEL || DEFAULT_MODEL,
- system: SYSTEM_PROMPT,
- prompt: userPrompt,
- temperature: 0.7,
- });
- return result.toTextStreamResponse();
- }
|