fix(logs): resolve IndentationError in ChatLogger

This commit is contained in:
2025-12-24 20:16:06 +01:00
parent bd92544665
commit 3d1126a245

View File

@@ -8,6 +8,8 @@ from pathlib import Path
from datetime import datetime
from typing import Dict, Any, Optional
from config import get_settings
class ChatLogger:
"""
@@ -15,8 +17,6 @@ class ChatLogger:
Appends to JSONL file for easy parsing and DSGVO compliance.
"""
from config import get_settings
def __init__(self, log_dir: Optional[str] = None, log_file: str = "chat_history.jsonl"):
"""
Initialize chat logger.