DelegatingAIFunctionDeclaration constructor

DelegatingAIFunctionDeclaration(
  1. AIFunctionDeclaration inner
)

Creates a new DelegatingAIFunctionDeclaration wrapping inner.

Implementation

DelegatingAIFunctionDeclaration(this.inner)
    : super(
        name: inner.name,
        description: inner.description,
        parametersSchema: inner.parametersSchema,
        returnSchema: inner.returnSchema,
      );