# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-06-25 20:10:45 -07:00
parent 114946ae88
commit a4d84f7805
22 changed files with 821 additions and 38 deletions

View file

@ -1,9 +1,5 @@
import { NextRequest, NextResponse } from "next/server";
// Get backend URL from environment variable or default to localhost for development
const BACKEND_URL =
process.env.LLAMA_STACK_BACKEND_URL ||
`http://localhost:${process.env.LLAMA_STACK_PORT || 8321}`;
import { BACKEND_URL } from "@/lib/server-config";
async function proxyRequest(request: NextRequest, method: string) {
try {
@ -16,8 +12,6 @@ async function proxyRequest(request: NextRequest, method: string) {
const apiPath = pathSegments.slice(2).join("/"); // Remove 'api' segment
const targetUrl = `${BACKEND_URL}/${apiPath}${url.search}`;
console.log(`Proxying ${method} ${url.pathname} -> ${targetUrl}`);
// Prepare headers (exclude host and other problematic headers)
const headers = new Headers();
request.headers.forEach((value, key) => {
@ -33,6 +27,7 @@ async function proxyRequest(request: NextRequest, method: string) {
const requestOptions: RequestInit = {
method,
headers,
redirect: apiPath.startsWith("auth/") ? "manual" : "follow",
};
// Add body for methods that support it
@ -43,6 +38,18 @@ async function proxyRequest(request: NextRequest, method: string) {
// Make the request to FastAPI backend
const response = await fetch(targetUrl, requestOptions);
// Handle redirects for auth routes
if (
response.type === "opaqueredirect" ||
response.status === 302 ||
response.status === 307
) {
const location = response.headers.get("location");
if (location) {
return NextResponse.redirect(location);
}
}
// Get response data
const responseText = await response.text();