mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
9 lines
166 B
Python
9 lines
166 B
Python
from enum import Enum
|
|
|
|
|
|
class ModelEnum(str, Enum):
|
|
GENERATION_MODEL = "generation_model"
|
|
|
|
EMBEDDING_MODEL = "embedding_model"
|
|
|
|
RANK_MODEL = "rank_model"
|