Show / Hide Table of Contents

Class GroundingMetadata

Grounding metadata.

Inheritance
object
GroundingMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class GroundingMetadata

Properties

GroundingChunks

Declaration
[JsonProperty(PropertyName = "groundingChunks")]
public List<GroundingChunk> GroundingChunks { get; set; }
Property Value
Type Description
List<GroundingChunk>

Array of objects containing the web sources.

GroundingSupports

Declaration
[JsonProperty(PropertyName = "groundingSupports")]
public List<GroundingSupport> GroundingSupports { get; set; }
Property Value
Type Description
List<GroundingSupport>

Array of chunks to connect model response text to the sources in groundingChunks.

SearchEntryPoint

Declaration
[JsonProperty(PropertyName = "searchEntryPoint")]
public SearchEntryPoint SearchEntryPoint { get; set; }
Property Value
Type Description
SearchEntryPoint

WebSearchQueries

Declaration
[JsonProperty(PropertyName = "webSearchQueries")]
public List<string> WebSearchQueries { get; set; }
Property Value
Type Description
List<string>

The queries to be used for Search suggestions.

In this article
Back to top