plugin system

This commit is contained in:
2025-08-24 17:46:15 +02:00
parent 5fdab97f7f
commit d1c59265d7
132 changed files with 4246 additions and 2007 deletions

View File

@@ -10,7 +10,7 @@ export async function GET(request: NextRequest) {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 })
}
const response = await fetch(`${BACKEND_URL}/api/v1/llm/models`, {
const response = await fetch(`${BACKEND_URL}/api/llm/models`, {
method: "GET",
headers: {
"Authorization": token,