AxEventSink
Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/event/types.ts#L346
Type Parameters
| Type Parameter | Default type |
|---|---|
OUT | unknown |
Properties
| Property | Type |
|---|---|
id | string |
Methods
write()
write(output: OUT, context: Readonly<AxEventSinkContext<OUT>>): void | Promise<void>;Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/event/types.ts#L348
Parameters
| Parameter | Type |
|---|---|
output | OUT |
context | Readonly<AxEventSinkContext<OUT>> |
Returns
void | Promise<void>
writeChunk()?
optional writeChunk(chunk: Readonly<AxGenDeltaOut<OUT>>, context: Readonly<AxEventSinkContext<OUT>>): void | Promise<void>;Defined in: https://github.com/ax-llm/ax/blob/e4219a44b7581a55a40d9dd62d2c281062ff078d/src/ax/event/types.ts#L352
Parameters
| Parameter | Type |
|---|---|
chunk | Readonly<AxGenDeltaOut<OUT>> |
context | Readonly<AxEventSinkContext<OUT>> |
Returns
void | Promise<void>