Fix crash when logfire is installed but user is not authenticated. Closes #247

This commit is contained in:
Yiorgis Gozadinos 2026-01-20 13:19:58 +02:00
parent 8a7514cad2
commit 7bbac66640
No known key found for this signature in database
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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