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

EmbeddingLlmCustomization

Declaration
[JsonProperty(PropertyName = "embeddingLlmCustomization")]
public LlmCustomization EmbeddingLlmCustomization { get; set; }
Property Value
Type Description
LlmCustomization

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

ReasoningLlmCustomization

Declaration
[JsonProperty(PropertyName = "reasoningLlmCustomization")]
public LlmCustomization ReasoningLlmCustomization { get; set; }
Property Value
Type Description
LlmCustomization

RerankingLlmCustomization

Declaration
[JsonProperty(PropertyName = "rerankingLlmCustomization")]
public LlmCustomization RerankingLlmCustomization { get; set; }
Property Value
Type Description
LlmCustomization

RuntimeVersion

Declaration
[JsonProperty(PropertyName = "runtimeVersion")]
public string RuntimeVersion { get; set; }
Property Value
Type Description
string

The runtimeVersion of the system prompt.

In this article
Back to top