Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/github/awesome-copilot
/ _load
Function
_load
skills/mini-context-graph/scripts/tools/documents_store.py:43–47 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
41
42
43
def
_load() -> dict:
44
if
_DOCS_FILE.exists():
45
with
open(_DOCS_FILE,
"r"
)
as
f:
46
return
json.load(f)
47
return
{
"documents"
: {}}
48
49
50
def
_save(store: dict) -> None:
Callers
5
add_document
Function · 0.70
get_document
Function · 0.70
get_chunk
Function · 0.70
search_chunks
Function · 0.70
list_documents
Function · 0.70
Calls
1
open
Function · 0.50
Tested by
no test coverage detected