You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

embedding_constant.py 154B

12345678910
  1. from enum import Enum
  2. class EmbeddingInputType(Enum):
  3. """
  4. Enum for embedding input type.
  5. """
  6. DOCUMENT = "document"
  7. QUERY = "query"