Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AgentTaskInfo

import type { AgentTaskInfo } from "https://googleapis.deno.dev/v1/batch:v1.ts";

Task Info

interface AgentTaskInfo {
runnable?: bigint;
taskId?: string;
taskStatus?: TaskStatus;
}

§Properties

§
runnable?: bigint
[src]

The highest index of a runnable started by the agent for this task. The runnables are indexed from 1. Value 0 is undefined.

§
taskId?: string
[src]

ID of the Task

§
taskStatus?: TaskStatus
[src]

The status of the Task. If we need agent specific fields we should fork the public TaskStatus into an agent specific one. Or add them below.