Skip to content

Interface: AguiRunOptions

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Agui / AguiRunOptions

Interface: AguiRunOptions

Defined in: src/types/agui.ts:223

Per-call options for an AG-UI run.

Remarks

The stream is consumed lazily; aborting the signal stops the request and ends the iteration.

Example

const controller = new AbortController();
const events = client.agui.run({ threadId: 't1' }, { signal: controller.signal });

Properties

signal?

optional signal: AbortSignal

Defined in: src/types/agui.ts:225

Aborts the underlying request and ends the event stream.