feature: webui, kobolcpp intergration memory, game module

This commit is contained in:
2026-04-30 02:43:23 -04:00
parent 9da4259df1
commit 00f1ac4bef
40 changed files with 5651 additions and 1 deletions
@@ -0,0 +1,13 @@
from pathlib import Path
from localdiplomacy_agent.config import KoboldCppConfig
from localdiplomacy_agent.koboldcpp_process import KoboldCppProcess
def test_runtime_file_validation_reports_missing_files(tmp_path: Path):
process = KoboldCppProcess(KoboldCppConfig(), cwd=tmp_path)
errors = process.validate_runtime_files()
assert any("koboldcpp.exe" in error for error in errors)
assert any("model.gguf" in error for error in errors)