Remove generated artifacts and machine-specific paths

This commit is contained in:
2026-07-18 03:37:11 +08:00
parent 99c0f54998
commit cc3fb97be7
5713 changed files with 97 additions and 11438401 deletions
+3 -1
View File
@@ -109,7 +109,9 @@ class KnowledgeRepository:
return loaded
def _load_framework_refs(self) -> list[StandardAnswer]:
path = settings.knowledge_framework_path if settings.knowledge_framework_path.exists() else settings.legacy_knowledge_framework_path
path = settings.knowledge_framework_path
if not path.exists() and settings.legacy_knowledge_framework_path:
path = settings.legacy_knowledge_framework_path
if not path.exists():
return []
try: