TypeScript
import { RaijinLabsLucidAi } from "raijin-labs-lucid-ai"; const raijinLabsLucidAi = new RaijinLabsLucidAi({ bearerAuth: process.env["RAIJINLABSLUCIDAI_BEARER_AUTH"] ?? "", }); async function run() { const result = await raijinLabsLucidAi.a2A.lucidGetA2aTask({ passportId: "<id>", taskId: "<id>", }); console.log(result); } run();
{ "id": "<string>", "status": { "state": "submitted", "timestamp": "2023-11-07T05:31:56Z", "message": "<string>" }, "artifacts": [ { "parts": [ { "type": "<string>", "text": "<string>" } ] } ], "history": [ {} ], "metadata": {} }
Admin-only. Retrieves the current state of a task.
Documentation IndexFetch the complete documentation index at: https://docs.lucid.foundation/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.lucid.foundation/llms.txt
Use this file to discover all available pages before exploring further.
Lucid API key (lk_live_... or lk_test_...)
Agent passport identifier
A2A task identifier (UUID)
Task details
Show child attributes