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

Function get_conversation_path

backend/storage.py:16–18  ·  view source on GitHub ↗

Get the file path for a conversation.

(conversation_id: str)

Source from the content-addressed store, hash-verified

14
15
16def get_conversation_path(conversation_id: str) -> str:
17 """Get the file path for a conversation."""
18 return os.path.join(DATA_DIR, f"{conversation_id}.json")
19
20
21def create_conversation(conversation_id: str) -> Dict[str, Any]:

Callers 3

create_conversationFunction · 0.85
get_conversationFunction · 0.85
save_conversationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected