llm-inference-engine 0.1.0__tar.gz

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.
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: llm-inference-engine
3
+ Version: 0.1.0
4
+ Summary: LLM inferencing utilities for multiple projects.
5
+ License: MIT
6
+ Author: Enshuo (David) Hsu
7
+ Requires-Python: >=3.11,<4.0
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Description-Content-Type: text/markdown
13
+
14
+ This is an internal package for many LLM projects. It contains utility functions and classes.
@@ -0,0 +1 @@
1
+ This is an internal package for many LLM projects. It contains utility functions and classes.
@@ -0,0 +1,21 @@
1
+ [tool.poetry]
2
+ name = "llm-inference-engine"
3
+ version = "0.1.0"
4
+ description = "LLM inferencing utilities for multiple projects."
5
+ authors = ["Enshuo (David) Hsu"]
6
+ license = "MIT"
7
+ readme = "README.md"
8
+
9
+ exclude = [
10
+ "tests/**",
11
+ ".vscode/**",
12
+ "*.pyc"
13
+ ]
14
+
15
+ [tool.poetry.dependencies]
16
+ python = "^3.11"
17
+
18
+
19
+ [build-system]
20
+ requires = ["poetry-core"]
21
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,4 @@
1
+ from .llm_configs import LLMConfig, BasicLLMConfig, ReasoningLLMConfig, Qwen3LLMConfig, OpenAIReasoningLLMConfig
2
+ from .engines import InferenceEngine, OllamaInferenceEngine, OpenAIInferenceEngine, HuggingFaceHubInferenceEngine, OpenAIInferenceEngine, AzureOpenAIInferenceEngine, LiteLLMInferenceEngine, OpenAICompatibleInferenceEngine, VLLMInferenceEngine, SGLangInferenceEngine, OpenRouterInferenceEngine
3
+
4
+ __all__ = ["LLMConfig", "BasicLLMConfig", "ReasoningLLMConfig", "Qwen3LLMConfig", "OpenAIReasoningLLMConfig", "InferenceEngine", "OllamaInferenceEngine", "OpenAIInferenceEngine", "HuggingFaceHubInferenceEngine", "AzureOpenAIInferenceEngine", "LiteLLMInferenceEngine", "OpenAICompatibleInferenceEngine", "VLLMInferenceEngine", "SGLangInferenceEngine", "OpenRouterInferenceEngine"]