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
Output
Output returned by the tool.
public string Output { get; set; }
Property Value
Success
Whether the tool invocation was successful.
public bool Success { get; set; }
Property Value
ToolName
Name of the tool that was invoked.
public string ToolName { get; set; }