llm-proxy-server 0.0.1__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Vitalii Stepanenko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.3
2
+ Name: llm-proxy-server
3
+ Version: 0.0.1
4
+ Summary: LLM inference proxy server
5
+ License: MIT License
6
+
7
+ Copyright (c) 2025 Vitalii Stepanenko
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
26
+ Keywords: llm,large language models,ai,gpt,openai,proxy,http,proxt-server
27
+ Author: Vitalii Stepanenko
28
+ Author-email: mail@vitalii.in
29
+ Maintainer: Vitalii Stepanenko
30
+ Maintainer-email: mail@vitalii.in
31
+ Requires-Python: >=3.10
32
+ Classifier: Environment :: Console
33
+ Classifier: Intended Audience :: Developers
34
+ Classifier: Operating System :: OS Independent
35
+ Classifier: Programming Language :: Python :: 3
36
+ Classifier: Programming Language :: Python :: 3.10
37
+ Classifier: Programming Language :: Python :: 3.11
38
+ Classifier: Programming Language :: Python :: 3.12
39
+ Classifier: Programming Language :: Python :: 3.13
40
+ Classifier: License :: OSI Approved :: MIT License
41
+ Requires-Dist: ai-microcore (>=4.0.0.dev11,<4.1.0)
42
+ Project-URL: Source Code, https://github.com/Nayjest/llm-cli
43
+ Description-Content-Type: text/markdown
44
+
45
+ <p align="right">
46
+ <a href="https://pypi.org/project/llm-proxy/" target="_blank"><img src="https://badge.fury.io/py/llm-proxy.svg" alt="PYPI Release"></a>
47
+ <a href="https://github.com/Nayjest/llm-proxy/actions/workflows/code-style.yml" target="_blank"><img src="https://github.com/Nayjest/llm-proxy/actions/workflows/code-style.yml/badge.svg" alt="Code Style"></a>
48
+ <a href="https://github.com/Nayjest/llm-proxy/actions/workflows/tests.yml" target="_blank"><img src="https://github.com/Nayjest/llm-proxy/actions/workflows/tests.yml/badge.svg" alt="Tests"></a>
49
+ <a href="https://github.com/Nayjest/llm-proxy/blob/main/LICENSE" target="_blank"><img src="https://img.shields.io/static/v1?label=license&message=MIT&color=d08aff" alt="License"></a>
50
+ </p>
51
+
52
+ # LLM-Proxy
53
+
54
+ **Development Status**: bookmark it and go away, it is still in early development.
55
+
56
+ ## ✨ Features
57
+
58
+ - @todo
59
+
60
+
61
+ ## 🚀 Quickstart
62
+ ```bash
63
+ # Install LLM Console via pip
64
+ pip install <me>
65
+
66
+ ```
67
+
68
+ ## 🤝 Contributing
69
+
70
+ We ❤️ contributions! See [CONTRIBUTING.md](CONTRIBUTING.md).
71
+
72
+ ## 📝 License
73
+
74
+ Licensed under the [MIT License](LICENSE).
75
+
76
+ © 2022&mdash;2025 [Vitalii Stepanenko](mailto:mail@vitaliy.in)
77
+
@@ -0,0 +1,6 @@
1
+ lm_proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ lm_proxy/app.py,sha256=ZSAK5u8-m3IxPpFuejeBW84t0cThj0sW9Nirn0ZJK78,22
3
+ llm_proxy_server-0.0.1.dist-info/LICENSE,sha256=XATf3zv-CppUSJqI18KLhwnPEomUXEl5WbBzFyb9OSU,1096
4
+ llm_proxy_server-0.0.1.dist-info/METADATA,sha256=x6VWXFK4X6EFEjbP1hDtnGanVK7QYyXBOrDvO8vuhi0,3326
5
+ llm_proxy_server-0.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
6
+ llm_proxy_server-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.1.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
lm_proxy/__init__.py ADDED
File without changes
lm_proxy/app.py ADDED
@@ -0,0 +1 @@
1
+ print("Coming Soon!")