mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
37 lines
614 B
Python
37 lines
614 B
Python
"""Component enumeration module."""
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class ComponentEnum(str, Enum):
|
|
"""Enumeration of component types for dependency injection and registration."""
|
|
|
|
BASE = "base"
|
|
|
|
AS_LLM = "as_llm"
|
|
|
|
AS_EMBEDDING = "as_embedding"
|
|
|
|
EMBEDDING_STORE = "embedding_store"
|
|
|
|
FILE_CHUNKER = "file_chunker"
|
|
|
|
FILE_STORE = "file_store"
|
|
|
|
FILE_GRAPH = "file_graph"
|
|
|
|
FILE_CATALOG = "file_catalog"
|
|
|
|
KEYWORD_INDEX = "keyword_index"
|
|
|
|
SERVICE = "service"
|
|
|
|
CLIENT = "client"
|
|
|
|
STEP = "step"
|
|
|
|
JOB = "job"
|
|
|
|
TOKENIZER = "tokenizer"
|
|
|
|
AGENT_WRAPPER = "agent_wrapper"
|