/ src / python / txtai / embeddings / index / action.py
action.py
 1  """
 2  Action module
 3  """
 4  
 5  from enum import Enum
 6  
 7  
 8  class Action(Enum):
 9      """
10      Index action types
11      """
12  
13      INDEX = 1
14      UPSERT = 2
15      REINDEX = 3