mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-22 00:32:49 +00:00
- Add file_graph import to component registry - Register FILE_GRAPH enum in ComponentEnum - Implement BaseFileGraph integration in LinkedFileParser - Replace FileEdge with FileLink for better semantic clarity - Add lazy resolution of file_graph from app_context - Update file watcher logging to reflect links instead of edges refactor: streamline MCP transport layer architecture - Remove redundant step shells from reme2/mcp/steps/ - Consolidate all @R.register components to reme2.memory package - Update server.py to import reme2.memory directly - Revise README.md to document new architecture - Simplify module dependencies and import structure
43 lines
974 B
Python
43 lines
974 B
Python
"""Components"""
|
|
|
|
from . import as_llm
|
|
from . import as_llm_formatter
|
|
from . import as_token_counter
|
|
from . import file_store
|
|
from . import file_graph
|
|
from . import client
|
|
from . import embedding
|
|
from . import file_parser
|
|
from . import file_watcher
|
|
from . import keyword_index
|
|
from . import job
|
|
from . import service
|
|
from .application_context import ApplicationContext
|
|
from .base_component import BaseComponent
|
|
from .base_step import BaseStep
|
|
from .component_registry import ComponentRegistry, R
|
|
from .prompt_handler import PromptHandler
|
|
from .runtime_context import RuntimeContext
|
|
|
|
__all__ = [
|
|
"ApplicationContext",
|
|
"BaseComponent",
|
|
"BaseStep",
|
|
"ComponentRegistry",
|
|
"R",
|
|
"PromptHandler",
|
|
"RuntimeContext",
|
|
# base components
|
|
"as_llm",
|
|
"as_llm_formatter",
|
|
"as_token_counter",
|
|
"file_store",
|
|
"file_graph",
|
|
"client",
|
|
"embedding",
|
|
"file_parser",
|
|
"file_watcher",
|
|
"keyword_index",
|
|
"job",
|
|
"service",
|
|
]
|