1
0

feat: enable SQLite WAL mode for all databases (AGI ticket #1) (#153)

This commit is contained in:
Alexander Whitestone
2026-03-08 16:07:02 -04:00
committed by GitHub
parent 11ba21418a
commit 82fb2417e3
31 changed files with 1042 additions and 170 deletions

View File

@@ -31,8 +31,7 @@ logger = logging.getLogger(__name__)
class Orchestrator(Protocol):
"""Anything with an ``execute_task`` matching Timmy's orchestrator."""
async def execute_task(self, task_id: str, description: str, context: dict) -> Any:
...
async def execute_task(self, task_id: str, description: str, context: dict) -> Any: ...
def _wrap_orchestrator(orch: Orchestrator) -> Callable: