mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-19 00:01:33 +00:00
15 lines
208 B
Python
15 lines
208 B
Python
|
|
from enum import Enum
|
|
|
|
|
|
class ComponentEnum(str, Enum):
|
|
|
|
BASE = "base"
|
|
|
|
AS_LLM = "as_llm"
|
|
|
|
AS_LLM_FORMATTER = "as_llm_formatter"
|
|
|
|
FILE_STORE = "file_store"
|
|
|
|
FILE_WATCHER = "file_watcher"
|