import { RaijinLabsLucidAiCore } from "raijin-labs-lucid-ai/core.js";
import { agentsMirrorLucidGetAgentRunProof } from "raijin-labs-lucid-ai/funcs/agentsMirrorLucidGetAgentRunProof.js";
// Use `RaijinLabsLucidAiCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const raijinLabsLucidAi = new RaijinLabsLucidAiCore();
async function run() {
const res = await agentsMirrorLucidGetAgentRunProof(raijinLabsLucidAi, {
adminAuth: process.env["RAIJINLABSLUCIDAI_ADMIN_AUTH"] ?? "",
}, {
passportId: "<id>",
runId: "<id>",
});
if (res.ok) {
const { value: result } = res;
console.log(result);
} else {
console.log("agentsMirrorLucidGetAgentRunProof failed:", res.error);
}
}
run();