SearchModelFactory.KnowledgeBaseModelAnswerSynthesisActivityRecord Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an LLM answer synthesis activity record.
public static Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseModelAnswerSynthesisActivityRecord KnowledgeBaseModelAnswerSynthesisActivityRecord(int id = 0, int? elapsedMs = default, Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseErrorDetail error = default, string warning = default, int? inputTokens = default, int? outputTokens = default, string modelName = default);
static member KnowledgeBaseModelAnswerSynthesisActivityRecord : int * Nullable<int> * Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseErrorDetail * string * Nullable<int> * Nullable<int> * string -> Azure.Search.Documents.KnowledgeBases.Models.KnowledgeBaseModelAnswerSynthesisActivityRecord
Public Shared Function KnowledgeBaseModelAnswerSynthesisActivityRecord (Optional id As Integer = 0, Optional elapsedMs As Nullable(Of Integer) = Nothing, Optional error As KnowledgeBaseErrorDetail = Nothing, Optional warning As String = Nothing, Optional inputTokens As Nullable(Of Integer) = Nothing, Optional outputTokens As Nullable(Of Integer) = Nothing, Optional modelName As String = Nothing) As KnowledgeBaseModelAnswerSynthesisActivityRecord
Parameters
- id
- Int32
The ID of the activity record.
- error
- KnowledgeBaseErrorDetail
The error detail explaining why the operation failed. This property is only included when the activity does not succeed.
- warning
- String
A warning message surfacing potential configuration issues observed during the activity, such as documents dropped due to score thresholding, token limit truncation, or timeout conditions.
- modelName
- String
The name of the model used for the LLM answer synthesis activity.
Returns
A new KnowledgeBaseModelAnswerSynthesisActivityRecord instance for mocking.