Skip to content

Interface: AguiFunctionCall

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Agui / AguiFunctionCall

Interface: AguiFunctionCall

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

A function invocation inside an AG-UI tool call.

Remarks

arguments is a JSON-encoded string (not an object) — that is the AG-UI wire contract, and the SDK passes it through untouched.

Example

const call: AguiFunctionCall = {
name: 'lookupPatient',
arguments: '{"patientId":"42"}',
};

Properties

arguments?

optional arguments: string

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

JSON-encoded arguments.


name

name: string

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

Function name.