mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-22 00:32:49 +00:00
Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
docs: add ReMe2 architecture design documentation - Add comprehensive design document (reme2.md) detailing the three-layer architecture (L1/L2/L3) for the vault system - Document new protocols for folder notes and memory management - Specify interface contracts for memory_* and vault_* tools - Outline implementation phases from current state to target refactor: fix typo in personal retriever class - Correct spelling error: 'retri eved_nodes' -> 'retrieved_nodes' in PersonalRetriever.result assignment chore: update gitignore with vault-related patterns - Add '/vault' to ignore vault directory - Add '/reme-plugin' to ignore plugin files - Add '/reme2/vault' to ignore new vault implementation ```
41 lines
933 B
Python
41 lines
933 B
Python
"""Components"""
|
|
|
|
from . import as_llm
|
|
from . import as_llm_formatter
|
|
from . import as_token_counter
|
|
from . import edge_extractor
|
|
from . import file_store
|
|
from . import client
|
|
from . import embedding
|
|
from . import file_parser
|
|
from . import file_watcher
|
|
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",
|
|
"edge_extractor",
|
|
"file_store",
|
|
"client",
|
|
"embedding",
|
|
"file_parser",
|
|
"file_watcher",
|
|
"job",
|
|
"service",
|
|
]
|