Fix crash when logfire is installed but user is not authenticated. Closes #247
This commit is contained in:
parent
8a7514cad2
commit
7bbac66640
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue