Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 549 Bytes

File metadata and controls

35 lines (28 loc) · 549 Bytes

SupportedOperator

Example Usage

from mistralai.client.models import SupportedOperator

# Open enum: unrecognized values are captured as UnrecognizedStr
value: SupportedOperator = "lt"

Values

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

  • "lt"
  • "lte"
  • "gt"
  • "gte"
  • "startswith"
  • "istartswith"
  • "endswith"
  • "iendswith"
  • "contains"
  • "icontains"
  • "matches"
  • "notcontains"
  • "inotcontains"
  • "eq"
  • "neq"
  • "isnull"
  • "includes"
  • "excludes"
  • "len_eq"