AzureAIProjectsModelFactory.EvaluatorGenerationArtifacts 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.
Service-managed provenance artifacts produced by an evaluator generation job. Present only on EvaluatorVersion resources created via the generation pipeline. The combined-JSONL Foundry Dataset is read-only and resolves to a versioned dataset in a service-reserved namespace.
public static Azure.AI.Projects.EvaluatorGenerationArtifacts EvaluatorGenerationArtifacts(Azure.AI.Projects.DatasetReference dataset = default, System.Collections.Generic.IEnumerable<string> kinds = default);
static member EvaluatorGenerationArtifacts : Azure.AI.Projects.DatasetReference * seq<string> -> Azure.AI.Projects.EvaluatorGenerationArtifacts
Public Shared Function EvaluatorGenerationArtifacts (Optional dataset As DatasetReference = Nothing, Optional kinds As IEnumerable(Of String) = Nothing) As EvaluatorGenerationArtifacts
Parameters
- dataset
- DatasetReference
Reference to the single Foundry Dataset (one combined JSONL file, version-aligned to EvaluatorVersion.version) holding all artifacts produced by the generation pipeline. Each row in the JSONL carries a kind field discriminating its content (e.g. spec, tools, context).
- kinds
- IEnumerable<String>
The kinds of rows present in dataset. Always contains "spec" (the generated evaluation specification, a Markdown document describing what the evaluator measures). May additionally contain "tools" (when the generation pipeline produced or inferred OpenAI tool schemas) and/or "context" (when supplementary materials such as file uploads or trace samples were used during generation).
Returns
A new EvaluatorGenerationArtifacts instance for mocking.