core/apps/webapp/app/routes/api.v1.clusters.$clusterId.tsx
Harshith Mullapudi 4882f227d2
Feat: clusters (#37)
* Feat: clustering fact statements

* Feat: cluster drift

* Feat: add recall count and model to search

* Feat: Github integration

* Fix: clustering UI

* Improve graph

* Bump: new version

---------

Co-authored-by: Manoj K <saimanoj58@gmail.com>
2025-08-05 15:31:15 +05:30

40 lines
1.0 KiB
TypeScript

import { json, type LoaderFunctionArgs } from "@remix-run/node";
import { ClusteringService } from "~/services/clustering.server";
import { logger } from "~/services/logger.service";
import { requireUser } from "~/services/session.server";
const clusteringService = new ClusteringService();
export async function loader({ request, params }: LoaderFunctionArgs) {
try {
const user = await requireUser(request);
const { clusterId } = params;
if (!clusterId) {
return json(
{ success: false, error: "Cluster ID is required" },
{ status: 400 }
);
}
const statements = await clusteringService.getClusterStatements(clusterId, user.id);
return json({
success: true,
data: {
clusterId,
statements
}
});
} catch (error) {
logger.error("Error fetching cluster statements:", { error });
return json(
{
success: false,
error: error instanceof Error ? error.message : "Unknown error"
},
{ status: 500 }
);
}
}