Class AnalysisResult
- Namespace
- FoundationaLLM.Common.Models.Orchestration.Response
- Assembly
- FoundationaLLM.Common.dll
Represents the result of an analysis.
public class AnalysisResult
- Inheritance
-
AnalysisResult
- Inherited Members
- Extension Methods
Properties
AgentCapabilityCategory
The category of the agent's capability that was used in the analysis.
[JsonPropertyName("agent_capability_category")]
public string? AgentCapabilityCategory { get; set; }
Property Value
ToolInput
The input provided to the tool for analysis.
[JsonPropertyName("tool_input")]
public string? ToolInput { get; set; }
Property Value
ToolName
The name of the tool that performed the analysis.
[JsonPropertyName("tool_name")]
public string? ToolName { get; set; }
Property Value
ToolOutput
The output generated by the tool after analysis.
[JsonPropertyName("tool_output")]
public string? ToolOutput { get; set; }