MCPcopy
hub / github.com/karpathy/llm-council / ensure_data_dir

Function ensure_data_dir

backend/storage.py:11–13  ·  view source on GitHub ↗

Ensure the data directory exists.

()

Source from the content-addressed store, hash-verified

9
10
11def ensure_data_dir():
12 """Ensure the data directory exists."""
13 Path(DATA_DIR).mkdir(parents=True, exist_ok=True)
14
15
16def get_conversation_path(conversation_id: str) -> str:

Callers 3

create_conversationFunction · 0.85
save_conversationFunction · 0.85
list_conversationsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected