chore(repo): initialize Cowork Local Gitea repository
CI / test (push) Canceled after 0s

This commit is contained in:
thanhnv
2026-08-09 20:12:05 +07:00
commit 414eaddca3
192 changed files with 48160 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
"""LLM provider abstraction.
All providers translate a *canonical* message list into their own API shape and
expose a single ``chat()`` method that streams assistant text via a callback and
returns the final assistant message (including any tool calls).
"""
from .base import Provider, ProviderError, ToolSpec
from .factory import build_provider
__all__ = ["Provider", "ProviderError", "ToolSpec", "build_provider"]