AxAgentFunction Generated TypeScript API reference. typescript api api/reference build/apidocs/TypeAlias.AxAgentFunction.md type AxAgentFunction

AxAgentFunction

TypeScript
type AxAgentFunction = Omit<AxFunction, "description"> & object;

Defined in: https://github.com/ax-llm/ax/blob/5b28f9093bb70863b59459bb6df5062d005bce41/src/ax/agent/agentInternal/agentStateTypes.ts#L61

Type declaration

NameTypeDescription
_alwaysInclude?booleanInternal marker copied from an AxAgentFunctionGroup with alwaysInclude.
_kind?"internal" | "external"Marks the function’s origin so the runtime can distinguish user-registered tools ('external', default) from agent-derived ones ('internal') when dispatching onFunctionCall observers. Set automatically when an AxAgentic is supplied through functions: [...].
description?string-
examples?readonly AxAgentFunctionExample[]-
Docs