Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 404 Bytes

File metadata and controls

26 lines (19 loc) · 404 Bytes

MetricAggregation

Example Usage

from mistralai.client.models import MetricAggregation

# Open enum: unrecognized values are captured as UnrecognizedStr
value: MetricAggregation = "count"

Values

This is an open enum. Unrecognized values will not fail type checks.

  • "count"
  • "count_distinct"
  • "sum"
  • "avg"
  • "min"
  • "max"
  • "p50"
  • "p90"
  • "p95"
  • "p99"