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
| Parameter | Type |
|---|---|
options? | ProgressReadOptions |
Returns
Promise<readonly ProgressArtifactRef[]>
write()
ts
write(content, options?): Promise<ProgressArtifactRef>;Defined in: packages/agent/src/types.ts:838
Parameters
| Parameter | Type |
|---|---|
content | string |
options? | ProgressWriteOptions |
Returns
Promise<ProgressArtifactRef>