Class RagToolConfig
The configuration for RAG Tool.
Inherited Members
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class RagToolConfig : ToolConfig
Properties
GenerationLlmCustomization
Declaration
[JsonProperty(PropertyName = "generationLlmCustomization")]
public LlmCustomization GenerationLlmCustomization { get; set; }
Property Value
Type | Description |
---|---|
LlmCustomization |
KnowledgeBaseConfigs
Declaration
[Required(ErrorMessage = "KnowledgeBaseConfigs is required.")]
[JsonProperty(PropertyName = "knowledgeBaseConfigs")]
public List<KnowledgeBaseConfig> KnowledgeBaseConfigs { get; set; }
Property Value
Type | Description |
---|---|
List<KnowledgeBaseConfig> | The KnowledgeBase configurations that this RAG Tool uses |
Remarks
Required