Initial commit: LocalPilot:本地模型运行时,复用 llama-server 并提供 Ollama 兼容 provider

This commit is contained in:
WpyQwq
2026-09-19 11:57:59 +08:00
commit d159212416
27 changed files with 3022 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
from .base import BaseBackend
from .gguf import GGUFBackend
from .onnx import ONNXBackend
from .ollama import OllamaBackend
from .remote import RemoteBackend
from .transformers_backend import TransformersBackend
__all__ = ["BaseBackend", "GGUFBackend", "ONNXBackend", "OllamaBackend", "RemoteBackend", "TransformersBackend"]