Table of Contents

Class ToolInvocation

Namespace
AiDotNet.RetrievalAugmentedGeneration.Models
Assembly
AiDotNet.dll

Represents a tool invocation during reasoning.

public class ToolInvocation
Inheritance
ToolInvocation
Inherited Members

Properties

Input

Input provided to the tool.

public string Input { get; set; }

Property Value

string

Output

Output returned by the tool.

public string Output { get; set; }

Property Value

string

Success

Whether the tool invocation was successful.

public bool Success { get; set; }

Property Value

bool

ToolName

Name of the tool that was invoked.

public string ToolName { get; set; }

Property Value

string