mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 18:18:27 +00:00
65 lines
1.7 KiB
TypeScript
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 };
|