core/apps/webapp/app/routes/api.v1.deep-search.tsx
Harshith Mullapudi 5e05f1f56b fix: deep search
2025-10-15 23:39:42 +05:30

65 lines
1.7 KiB
TypeScript

import { z } from "zod";
import { json } from "@remix-run/node";
import { createActionApiRoute } from "~/services/routeBuilders/apiBuilder.server";
import { deepSearch } from "~/trigger/deep-search";
import { runs } from "@trigger.dev/sdk";
const DeepSearchBodySchema = z.object({
content: z.string().min(1, "Content is required"),
intentOverride: z.string().optional(),
stream: z.boolean().default(false),
metadata: z
.object({
source: z.enum(["chrome", "obsidian", "mcp"]).optional(),
url: z.string().optional(),
pageTitle: z.string().optional(),
})
.optional(),
});
const { action, loader } = createActionApiRoute(
{
body: DeepSearchBodySchema,
method: "POST",
allowJWT: true,
authorization: {
action: "search",
},
corsStrategy: "all",
},
async ({ body, authentication }) => {
let trigger;
if (!body.stream) {
trigger = await deepSearch.trigger({
content: body.content,
userId: authentication.userId,
stream: body.stream,
intentOverride: body.intentOverride,
metadata: body.metadata,
});
return json(trigger);
} else {
const runHandler = await deepSearch.trigger({
content: body.content,
userId: authentication.userId,
stream: body.stream,
intentOverride: body.intentOverride,
metadata: body.metadata,
});
for await (const run of runs.subscribeToRun(runHandler.id)) {
if (run.status === "COMPLETED") {
return json(run.output);
} else if (run.status === "FAILED") {
return json(run.error);
}
}
return json({ error: "Run failed" });
}
},
);
export { action, loader };