git commit -m "feat: major architectural refactor

- Refactor memory system (episodic/STM/LTM with components)
- Implement complete subtitle domain (scanner, matcher, placer)
- Add YAML workflow infrastructure
- Externalize knowledge base (patterns, release groups)
- Add comprehensive testing suite
- Create manual testing CLIs"
This commit is contained in:
2026-05-11 21:33:37 +02:00
parent 62b5d0b998
commit de02bdea06
103 changed files with 8559 additions and 1346 deletions
+3 -3
View File
@@ -117,7 +117,7 @@ class TestPromptBuilderMemoryContext:
tools = make_tools(settings)
builder = PromptBuilder(tools)
memory.ltm.set_config("download_folder", "/test/downloads")
memory.ltm.download_folder = "/test/downloads"
prompt = builder.build_system_prompt()
@@ -212,12 +212,12 @@ class TestPromptBuilderStructure:
tools = make_tools(settings)
builder = PromptBuilder(tools)
memory.ltm.set_config("test_key", "test_value")
memory.ltm.download_folder = "/test/downloads"
context = builder._format_config_context(memory)
assert "CONFIGURATION" in context
assert "test_key" in context
assert "download_folder" in context
class TestPromptBuilderEdgeCases: