llm-proxy-server 3.2.0__tar.gz → 3.2.2__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.
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/PKG-INFO +4 -4
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/pyproject.toml +4 -4
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/LICENSE +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/README.md +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/__init__.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/__main__.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/api_key_check/__init__.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/api_key_check/allow_all.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/api_key_check/in_config.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/api_key_check/with_request.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/app.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/base_types.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/bootstrap.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/config.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/config_loaders/__init__.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/config_loaders/json.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/config_loaders/python.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/config_loaders/toml.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/config_loaders/yaml.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/core.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/errors.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/handlers/__init__.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/handlers/forward_http_headers.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/handlers/rate_limiter.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/loggers.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/models_endpoint.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/strategies/__init__.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/strategies/fallback.py +0 -0
- {llm_proxy_server-3.2.0 → llm_proxy_server-3.2.2}/lm_proxy/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: llm-proxy-server
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.2
|
|
4
4
|
Summary: LLM Proxy Server is an OpenAI-compatible http proxy server for inferencing various LLMs capable of working with Google, Anthropic, OpenAI APIs, local PyTorch inference, etc.
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -55,10 +55,10 @@ Requires-Dist: pydantic (>=2.12.5,<2.13.0)
|
|
|
55
55
|
Requires-Dist: pytest (>=8.4.2,<8.5.0) ; extra == "test"
|
|
56
56
|
Requires-Dist: pytest-asyncio (>=1.2.0,<1.3.0) ; extra == "test"
|
|
57
57
|
Requires-Dist: pytest-cov (>=7.0.0,<7.1.0) ; extra == "test"
|
|
58
|
-
Requires-Dist: requests (>=2.32.5,<
|
|
59
|
-
Requires-Dist: typer (>=0.24.0)
|
|
58
|
+
Requires-Dist: requests (>=2.32.5,<3)
|
|
59
|
+
Requires-Dist: typer (>=0.24.0,<1)
|
|
60
60
|
Requires-Dist: uvicorn (>=0.41.0)
|
|
61
|
-
Requires-Dist: websockets (>=14.0,<
|
|
61
|
+
Requires-Dist: websockets (>=14.0,<16)
|
|
62
62
|
Project-URL: Bug Tracker, https://github.com/Nayjest/lm-proxy/issues
|
|
63
63
|
Project-URL: Source Code, https://github.com/Nayjest/lm-proxy
|
|
64
64
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "llm-proxy-server"
|
|
3
|
-
version = "3.2.
|
|
3
|
+
version = "3.2.2"
|
|
4
4
|
description = "LLM Proxy Server is an OpenAI-compatible http proxy server for inferencing various LLMs capable of working with Google, Anthropic, OpenAI APIs, local PyTorch inference, etc."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
keywords = ["llm", "large language models", "ai", "gpt", "openai", "proxy", "http", "proxy-server", "llm gateway", "openai", "anthropic", "google genai"]
|
|
@@ -38,10 +38,10 @@ dependencies = [
|
|
|
38
38
|
"ai-microcore>=5.1.2,<7",
|
|
39
39
|
"fastapi>=0.121.3,<1",
|
|
40
40
|
"uvicorn>=0.41.0",
|
|
41
|
-
"typer>=0.24.0",
|
|
42
|
-
"requests
|
|
41
|
+
"typer>=0.24.0,<1",
|
|
42
|
+
"requests>=2.32.5,<3",
|
|
43
43
|
"pydantic~=2.12.5",
|
|
44
|
-
"websockets>=14.0,<
|
|
44
|
+
"websockets>=14.0,<16",
|
|
45
45
|
]
|
|
46
46
|
|
|
47
47
|
[project.optional-dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|