diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bd9d023..5a175d0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,10 @@ - `ruff`: 0.14.11 → 0.14.13 - `opencv-python-headless`: 4.12.0.88 → 4.13.0.90 +### Fixed + +- **Chat TUI**: Fixed crash when logfire is installed but user is not authenticated ([#247](https://github.com/ggozad/haiku.rag/issues/247)) + ## [0.26.6] - 2026-01-19 ### Changed diff --git a/haiku_rag_slim/haiku/rag/chat/app.py b/haiku_rag_slim/haiku/rag/chat/app.py index c4fa7f9a..f79d7e2a 100644 --- a/haiku_rag_slim/haiku/rag/chat/app.py +++ b/haiku_rag_slim/haiku/rag/chat/app.py @@ -32,7 +32,7 @@ if TYPE_CHECKING: try: import logfire - logfire.configure(console=False) + logfire.configure(send_to_logfire="if-token-present", console=False) except ImportError: pass