Get the file path for a conversation.
(conversation_id: str)
| 14 | |
| 15 | |
| 16 | def 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 | |
| 21 | def create_conversation(conversation_id: str) -> Dict[str, Any]: |
no outgoing calls
no test coverage detected