mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-09 22:31:05 +00:00
* fix(bm25_index): 修正BM25索引计算中的文档长度归一化问题 修复了在计算BM25相似度时对文档长度进行不正确归一化的bug,确保所有查询都能得到准确的相关性评分。 * up * up * up * up * up * up * up * up * up * up * up * up * up * up * up * up * up * refactor(steps): Rename and adjust indexing step logic - Rename `scan_changes.py` and `reindex.py` to `clear_and_scan.py` - Update implementation details of `ScanChangesStep` and `ClearAndScanStep` - Modify the scheduling mechanism in `WatchChangesStep` - Adjust step registration and parameter configuration in config files - Update related tests to align with the new interface changes * up * feat(daily): replace daily CRUD operations with slug provisioning approach * refactor(tests): migrate CRUD step tests from HTTP server to direct LocalFileStore * up * up * up * up --------- Co-authored-by: huangsen <huangsen.huang@alibaba-inc.com>
19 lines
508 B
Python
19 lines
508 B
Python
"""Link-scope enumeration: which edges to return from get_inlinks / get_outlinks."""
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class LinkScopeEnum(str, Enum):
|
|
"""Which subset of edges a link query should return.
|
|
|
|
A file-graph edge is **real** when both endpoints are indexed nodes,
|
|
and **virtual** (dangling / pending) when one endpoint is a placeholder
|
|
— a path referenced by a wikilink but never upserted, or upserted
|
|
then deleted.
|
|
"""
|
|
|
|
REAL = "real"
|
|
|
|
VIRTUAL = "virtual"
|
|
|
|
ALL = "all"
|