core/apps/webapp/app/routes/api.v1.logs.$logId.tsx
Harshith Mullapudi f39c7cc6d0
feat: remove trigger and run base on bullmq (#126)
* feat: remove trigger and run base on bullmq
* fix: telemetry and trigger deploymen
* feat: add Ollama container and update ingestion status for unchanged documents
* feat: add logger to bullmq workers
* 1. Remove chat and deep-search from trigger
2. Add ai/sdk for chat UI
3. Added a better model manager

* refactor: simplify clustered graph query and add stop conditions for AI responses

* fix: streaming

* fix: docker docs

---------

Co-authored-by: Manoj <saimanoj58@gmail.com>
2025-10-26 12:56:12 +05:30

118 lines
2.8 KiB
TypeScript

import { json } from "@remix-run/node";
import { z } from "zod";
import { deleteEpisodeWithRelatedNodes } from "~/services/graphModels/episode";
import {
deleteIngestionQueue,
getIngestionQueue,
getIngestionQueueForFrontend,
} from "~/services/ingestionLogs.server";
import {
createHybridActionApiRoute,
createHybridLoaderApiRoute,
} from "~/services/routeBuilders/apiBuilder.server";
import { findRunningJobs, cancelJob } from "~/services/jobManager.server";
// Schema for space ID parameter
const LogParamsSchema = z.object({
logId: z.string(),
});
const loader = createHybridLoaderApiRoute(
{
params: LogParamsSchema,
findResource: async () => 1,
corsStrategy: "all",
allowJWT: true,
},
async ({ params, authentication }) => {
const formattedLog = await getIngestionQueueForFrontend(
params.logId,
authentication.userId,
);
return json({ log: formattedLog });
},
);
const { action } = createHybridActionApiRoute(
{
params: LogParamsSchema,
allowJWT: true,
method: "DELETE",
authorization: {
action: "delete",
},
corsStrategy: "all",
},
async ({ params, authentication }) => {
try {
const ingestionQueue = await getIngestionQueue(params.logId);
if (!ingestionQueue) {
return json(
{
error: "Episode not found or unauthorized",
code: "not_found",
},
{ status: 404 },
);
}
const output = ingestionQueue.output as any;
const runningTasks = await findRunningJobs({
tags: [authentication.userId, ingestionQueue.id],
taskIdentifier: "ingest-episode",
});
const latestTask = runningTasks[0];
if (latestTask && !latestTask.isCompleted) {
await cancelJob(latestTask.id);
}
let result;
if (output?.episodeUuid) {
result = await deleteEpisodeWithRelatedNodes({
episodeUuid: output?.episodeUuid,
userId: authentication.userId,
});
if (!result.episodeDeleted) {
return json(
{
error: "Episode not found or unauthorized",
code: "not_found",
},
{ status: 404 },
);
}
}
await deleteIngestionQueue(ingestionQueue.id);
return json({
success: true,
message: "Episode deleted successfully",
deleted: {
episode: result?.episodeDeleted,
statements: result?.statementsDeleted,
entities: result?.entitiesDeleted,
facts: result?.factsDeleted,
},
});
} catch (error) {
console.error("Error deleting episode:", error);
return json(
{
error: "Failed to delete episode",
code: "internal_error",
},
{ status: 500 },
);
}
},
);
export { action, loader };