Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 429 Bytes

File metadata and controls

33 lines (27 loc) · 429 Bytes

Operator

The operator to use for filtering options

Example Usage

from mistralai.client.models import Operator
value: Operator = "lt"

Values

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