mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
9 lines
136 B
Python
9 lines
136 B
Python
from enum import Enum
|
|
|
|
|
|
class DashApiEnum(str, Enum):
|
|
GENERATION = "generation"
|
|
|
|
EMBEDDING = "embedding"
|
|
|
|
RERANK = "rerank"
|