Merge branch 'main' into dependecy-check

This commit is contained in:
Mike Fortman 2026-01-07 09:38:10 -06:00 committed by GitHub
commit 3ac40ac4e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,9 +37,9 @@ class DoclingManager:
self._starting = False self._starting = False
self._external_process = False self._external_process = False
# PID file to track docling-serve across sessions (in current working directory) # PID file to track docling-serve across sessions (centralized in ~/.openrag/tui/)
from pathlib import Path from utils.paths import get_tui_dir
self._pid_file = Path.cwd() / ".docling.pid" self._pid_file = get_tui_dir() / ".docling.pid"
# Log storage - simplified, no queue # Log storage - simplified, no queue
self._log_buffer: List[str] = [] self._log_buffer: List[str] = []