Class PlanningTrace
Contains trace information related to planning at the platform.
Inherited Members
Namespace: Oci.GenerativeaiagentruntimeService.Models
Assembly: OCI.DotNetSDK.Generativeaiagentruntime.dll
Syntax
public class PlanningTrace : Trace
Properties
Input
Declaration
[JsonProperty(PropertyName = "input")]
public string Input { get; set; }
Property Value
Type | Description |
---|---|
string | Input prompt to planning LLM. |
Output
Declaration
[JsonProperty(PropertyName = "output")]
public string Output { get; set; }
Property Value
Type | Description |
---|---|
string | Output string from planning LLM. |
Usage
Declaration
[JsonProperty(PropertyName = "usage")]
public List<Usage> Usage { get; set; }
Property Value
Type | Description |
---|---|
List<Usage> | Details of model and its usage. |