Private
Public Access
0
0

feat(ai-server): Add AIProxyClient queue communication layer

This commit is contained in:
2026-05-13 08:58:58 -04:00
parent 38270ffa16
commit 4c5e719be4
4 changed files with 161 additions and 15 deletions
+10 -3
View File
@@ -11,10 +11,17 @@ from pathlib import Path
from typing import Generator, Any
from unittest.mock import patch
# Ensure project root is in path for imports
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
thirdparty_dir = os.path.join(os.path.dirname(__file__), "..", "thirdparty")
if thirdparty_dir not in sys.path:
sys.path.insert(0, thirdparty_dir)
project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
if project_root not in sys.path:
sys.path.insert(0, project_root)
from defer.sugar import install
install()
# Import the App class after patching if necessary, but here we just need the type hint
from src.gui_2 import App
class VerificationLogger: