rename fix and build fixes

This commit is contained in:
Dobromir Popov
2025-10-18 16:46:23 +03:00
parent a520ed7e39
commit 3d91cb0e8f
7 changed files with 100 additions and 69 deletions

View File

@@ -1,5 +1,5 @@
"""
TESTCASES Core Module
ANNOTATE Core Module
Core business logic for the Manual Trade Annotation UI
"""

View File

@@ -39,7 +39,7 @@ class TradeAnnotation:
class AnnotationManager:
"""Manages trade annotations and test case generation"""
def __init__(self, storage_path: str = "TESTCASES/data/annotations"):
def __init__(self, storage_path: str = "ANNOTATE/data/annotations"):
"""Initialize annotation manager"""
self.storage_path = Path(storage_path)
self.storage_path.mkdir(parents=True, exist_ok=True)

View File

@@ -54,7 +54,7 @@ class TrainingSimulator:
self.training_sessions = {}
# Storage for training results
self.results_dir = Path("TESTCASES/data/training_results")
self.results_dir = Path("ANNOTATE/data/training_results")
self.results_dir.mkdir(parents=True, exist_ok=True)
logger.info("TrainingSimulator initialized")