abstractcore 2.6.3__py3-none-any.whl → 2.6.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- abstractcore/providers/__init__.py +4 -0
- abstractcore/providers/openai_compatible_provider.py +829 -0
- abstractcore/providers/registry.py +37 -1
- abstractcore/providers/vllm_provider.py +823 -0
- abstractcore/server/app.py +22 -2
- abstractcore/utils/version.py +1 -1
- {abstractcore-2.6.3.dist-info → abstractcore-2.6.5.dist-info}/METADATA +44 -24
- {abstractcore-2.6.3.dist-info → abstractcore-2.6.5.dist-info}/RECORD +12 -10
- {abstractcore-2.6.3.dist-info → abstractcore-2.6.5.dist-info}/WHEEL +0 -0
- {abstractcore-2.6.3.dist-info → abstractcore-2.6.5.dist-info}/entry_points.txt +0 -0
- {abstractcore-2.6.3.dist-info → abstractcore-2.6.5.dist-info}/licenses/LICENSE +0 -0
- {abstractcore-2.6.3.dist-info → abstractcore-2.6.5.dist-info}/top_level.txt +0 -0
|
@@ -7,6 +7,8 @@ from .ollama_provider import OllamaProvider
|
|
|
7
7
|
from .lmstudio_provider import LMStudioProvider
|
|
8
8
|
from .huggingface_provider import HuggingFaceProvider
|
|
9
9
|
from .mlx_provider import MLXProvider
|
|
10
|
+
from .vllm_provider import VLLMProvider
|
|
11
|
+
from .openai_compatible_provider import OpenAICompatibleProvider
|
|
10
12
|
|
|
11
13
|
# Provider registry for centralized provider discovery and management
|
|
12
14
|
from .registry import (
|
|
@@ -41,6 +43,8 @@ __all__ = [
|
|
|
41
43
|
'LMStudioProvider',
|
|
42
44
|
'HuggingFaceProvider',
|
|
43
45
|
'MLXProvider',
|
|
46
|
+
'VLLMProvider',
|
|
47
|
+
'OpenAICompatibleProvider',
|
|
44
48
|
|
|
45
49
|
# Provider registry
|
|
46
50
|
'ProviderRegistry',
|