Merge branch 'feat/queue-based-graph-engine' into chore/merge-graph-engine

This commit is contained in:
-LAN-
2025-09-08 14:25:10 +08:00
824 changed files with 7235 additions and 2941 deletions

View File

@ -17,11 +17,11 @@ class ProviderConfigCache(Protocol):
"""Get cached provider configuration"""
...
def set(self, config: dict[str, Any]) -> None:
def set(self, config: dict[str, Any]):
"""Cache provider configuration"""
...
def delete(self) -> None:
def delete(self):
"""Delete cached provider configuration"""
...