Show / Hide Table of Contents

Class RagToolConfig

The configuration for RAG Tool.

Inheritance
object
ToolConfig
RagToolConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top