Initial commit: Original Python LLMTester project

This commit is contained in:
2025-10-03 01:11:39 -04:00
commit ac5204e93a
54 changed files with 11911 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from __future__ import annotations
import sys
from pathlib import Path
CORE_DIR = Path(__file__).resolve().parent / ".core"
if str(CORE_DIR) not in sys.path:
sys.path.insert(0, str(CORE_DIR))
from runner import safe_run # type: ignore # noqa: E402
if __name__ == "__main__":
raise SystemExit(safe_run())