Skip to content

Graphorin API reference v0.13.8


Graphorin API reference / @graphorin/agent / / AgentProgressIO

Interface: AgentProgressIO

Defined in: packages/agent/src/types.ts:837

Stable

Progress IO surface exposed on the Agent instance. The methods default the runId cursor to the in-flight run when present, so callers can use them inside an agent.run(...) boundary without repeating the cursor.

Methods

read()

ts
read(options?): Promise<readonly ProgressArtifactRef[]>;

Defined in: packages/agent/src/types.ts:839

Parameters

ParameterType
options?ProgressReadOptions

Returns

Promise&lt;readonly ProgressArtifactRef[]&gt;


write()

ts
write(content, options?): Promise<ProgressArtifactRef>;

Defined in: packages/agent/src/types.ts:838

Parameters

ParameterType
contentstring
options?ProgressWriteOptions

Returns

Promise&lt;ProgressArtifactRef&gt;