Merge branch 'main' into dependecy-check
This commit is contained in:
commit
3ac40ac4e8
1 changed files with 3 additions and 3 deletions
|
|
@ -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] = []
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue