Azure CreateEvaluation

Azure CreateEvaluation

Certified

Create an evaluation run in Azure AI Foundry

Submits a new evaluation job using a dataset and a set of evaluators. Requires Entra ID authentication (DefaultAzureCredential).

yaml
type: io.kestra.plugin.azure.aifoundry.CreateEvaluation

Create a new evaluation run in Azure AI Foundry

yaml
    id: azure_ai_create_evaluation
    namespace: company.team
    tasks:
      - id: create_eval
        type: io.kestra.plugin.azure.aifoundry.CreateEvaluation
        endpoint: "{{ secret('AZURE_AI_FOUNDRY_ENDPOINT') }}"
        tenantId: "{{ secret('AZURE_TENANT_ID') }}"
        clientId: "{{ secret('AZURE_CLIENT_ID') }}"
        clientSecret: "{{ secret('AZURE_CLIENT_SECRET') }}"
        datasetId: "azureml:my-dataset:1"
        displayName: "Nightly Groundedness Eval"
        evaluators:
          groundedness: "azureml://registries/azureml/models/Groundedness-Evaluator/versions/1"
Properties

Dataset ID

The Azure AI dataset ID to evaluate (e.g. azureml: my-dataset: 1).

Azure AI Foundry endpoint

The Azure AI Foundry project or model endpoint URL.

Evaluators

A map of evaluator keys to their Azure ML evaluator IDs.

Azure AI Foundry API key

API key for API-key authentication. When omitted, DefaultAzureCredential (Entra ID) is used instead.

Azure client ID

Client ID of the Azure app registration used with tenantId and clientSecret.

Azure client secret

Client secret of the Azure app registration used with tenantId and clientId.

Display Name

Human-readable label for this evaluation run.

Reference (ref) of the pluginDefaults to apply to this task.

Azure tenant ID

Azure Entra tenant ID used with clientId and clientSecret for service principal authentication.

The display name of the evaluation

The assigned evaluation name / ID

The initial status of the evaluation