ParagraphCitation¶
-
class
oci.generative_ai_agent_runtime.models.ParagraphCitation(**kwargs)¶ Bases:
objectThe source of information for the paragraph of agent’s response.
Methods
__init__(**kwargs)Initializes a new ParagraphCitation object with values from keyword arguments. Attributes
citationsGets the citations of this ParagraphCitation. paragraph[Required] Gets the paragraph of this ParagraphCitation. -
__init__(**kwargs)¶ Initializes a new ParagraphCitation object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - paragraph (oci.generative_ai_agent_runtime.models.Paragraph) – The value to assign to the paragraph property of this ParagraphCitation.
- citations (list[oci.generative_ai_agent_runtime.models.Citation]) – The value to assign to the citations property of this ParagraphCitation.
-
citations¶ Gets the citations of this ParagraphCitation. A list of citations for the paragraph of the generated message.
Returns: The citations of this ParagraphCitation. Return type: list[oci.generative_ai_agent_runtime.models.Citation]
-
paragraph¶ [Required] Gets the paragraph of this ParagraphCitation.
Returns: The paragraph of this ParagraphCitation. Return type: oci.generative_ai_agent_runtime.models.Paragraph
-