orbigpu 0.0.1__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.
- orbigpu-0.0.1/LICENSE +21 -0
- orbigpu-0.0.1/PKG-INFO +56 -0
- orbigpu-0.0.1/README.md +32 -0
- orbigpu-0.0.1/orbigpu/__init__.py +15 -0
- orbigpu-0.0.1/orbigpu.egg-info/PKG-INFO +56 -0
- orbigpu-0.0.1/orbigpu.egg-info/SOURCES.txt +8 -0
- orbigpu-0.0.1/orbigpu.egg-info/dependency_links.txt +1 -0
- orbigpu-0.0.1/orbigpu.egg-info/top_level.txt +1 -0
- orbigpu-0.0.1/pyproject.toml +33 -0
- orbigpu-0.0.1/setup.cfg +4 -0
orbigpu-0.0.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OrbiGPU
|
|
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.
|
orbigpu-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: orbigpu
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: OrbiGPU — Unified OpenAI-compatible API gateway for 100+ LLM models. Official SDK coming in v0.1.0.
|
|
5
|
+
Author: OrbiGPU
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://orbigpu.com
|
|
8
|
+
Project-URL: Documentation, https://orbigpu.com/docs
|
|
9
|
+
Keywords: llm,ai,openai,anthropic,gpt,claude,deepseek,api,orbigpu
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Requires-Python: >=3.9
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# OrbiGPU
|
|
26
|
+
|
|
27
|
+
**Unified OpenAI-compatible API gateway for 100+ LLM models from 15+ providers.**
|
|
28
|
+
|
|
29
|
+
Official website: [https://orbigpu.com](https://orbigpu.com)
|
|
30
|
+
|
|
31
|
+
## Status
|
|
32
|
+
|
|
33
|
+
**v0.0.1 is a reserved placeholder.** The full Python SDK will be released in v0.1.0+.
|
|
34
|
+
|
|
35
|
+
## Coming in v0.1.0
|
|
36
|
+
|
|
37
|
+
- OpenAI-compatible `OrbiGPU()` and `AsyncOrbiGPU()` clients
|
|
38
|
+
- Drop-in replacement for `openai.OpenAI` — just change `base_url`
|
|
39
|
+
- Access 100+ models from OpenAI, Anthropic, DeepSeek, Google, Groq, Zhipu, and more
|
|
40
|
+
- $10 free credits on signup at [orbigpu.com](https://orbigpu.com)
|
|
41
|
+
|
|
42
|
+
## Quickstart (available in v0.1.0+)
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from orbigpu import OrbiGPU
|
|
46
|
+
|
|
47
|
+
client = OrbiGPU(api_key="sk-your-key-from-orbigpu-dot-com")
|
|
48
|
+
response = client.chat.completions.create(
|
|
49
|
+
model="deepseek-chat",
|
|
50
|
+
messages=[{"role": "user", "content": "Hello"}],
|
|
51
|
+
)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT © OrbiGPU
|
orbigpu-0.0.1/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# OrbiGPU
|
|
2
|
+
|
|
3
|
+
**Unified OpenAI-compatible API gateway for 100+ LLM models from 15+ providers.**
|
|
4
|
+
|
|
5
|
+
Official website: [https://orbigpu.com](https://orbigpu.com)
|
|
6
|
+
|
|
7
|
+
## Status
|
|
8
|
+
|
|
9
|
+
**v0.0.1 is a reserved placeholder.** The full Python SDK will be released in v0.1.0+.
|
|
10
|
+
|
|
11
|
+
## Coming in v0.1.0
|
|
12
|
+
|
|
13
|
+
- OpenAI-compatible `OrbiGPU()` and `AsyncOrbiGPU()` clients
|
|
14
|
+
- Drop-in replacement for `openai.OpenAI` — just change `base_url`
|
|
15
|
+
- Access 100+ models from OpenAI, Anthropic, DeepSeek, Google, Groq, Zhipu, and more
|
|
16
|
+
- $10 free credits on signup at [orbigpu.com](https://orbigpu.com)
|
|
17
|
+
|
|
18
|
+
## Quickstart (available in v0.1.0+)
|
|
19
|
+
|
|
20
|
+
```python
|
|
21
|
+
from orbigpu import OrbiGPU
|
|
22
|
+
|
|
23
|
+
client = OrbiGPU(api_key="sk-your-key-from-orbigpu-dot-com")
|
|
24
|
+
response = client.chat.completions.create(
|
|
25
|
+
model="deepseek-chat",
|
|
26
|
+
messages=[{"role": "user", "content": "Hello"}],
|
|
27
|
+
)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
MIT © OrbiGPU
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""OrbiGPU — Unified OpenAI-compatible API gateway for 100+ LLM models.
|
|
2
|
+
|
|
3
|
+
v0.0.1 is a reserved placeholder. The full SDK will be released in v0.1.0+.
|
|
4
|
+
Learn more: https://orbigpu.com
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def _placeholder():
|
|
11
|
+
raise NotImplementedError(
|
|
12
|
+
"orbigpu v0.0.1 is a reserved placeholder. "
|
|
13
|
+
"The full SDK will be released in v0.1.0+. "
|
|
14
|
+
"Visit https://orbigpu.com for updates."
|
|
15
|
+
)
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: orbigpu
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: OrbiGPU — Unified OpenAI-compatible API gateway for 100+ LLM models. Official SDK coming in v0.1.0.
|
|
5
|
+
Author: OrbiGPU
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://orbigpu.com
|
|
8
|
+
Project-URL: Documentation, https://orbigpu.com/docs
|
|
9
|
+
Keywords: llm,ai,openai,anthropic,gpt,claude,deepseek,api,orbigpu
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
20
|
+
Requires-Python: >=3.9
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Dynamic: license-file
|
|
24
|
+
|
|
25
|
+
# OrbiGPU
|
|
26
|
+
|
|
27
|
+
**Unified OpenAI-compatible API gateway for 100+ LLM models from 15+ providers.**
|
|
28
|
+
|
|
29
|
+
Official website: [https://orbigpu.com](https://orbigpu.com)
|
|
30
|
+
|
|
31
|
+
## Status
|
|
32
|
+
|
|
33
|
+
**v0.0.1 is a reserved placeholder.** The full Python SDK will be released in v0.1.0+.
|
|
34
|
+
|
|
35
|
+
## Coming in v0.1.0
|
|
36
|
+
|
|
37
|
+
- OpenAI-compatible `OrbiGPU()` and `AsyncOrbiGPU()` clients
|
|
38
|
+
- Drop-in replacement for `openai.OpenAI` — just change `base_url`
|
|
39
|
+
- Access 100+ models from OpenAI, Anthropic, DeepSeek, Google, Groq, Zhipu, and more
|
|
40
|
+
- $10 free credits on signup at [orbigpu.com](https://orbigpu.com)
|
|
41
|
+
|
|
42
|
+
## Quickstart (available in v0.1.0+)
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from orbigpu import OrbiGPU
|
|
46
|
+
|
|
47
|
+
client = OrbiGPU(api_key="sk-your-key-from-orbigpu-dot-com")
|
|
48
|
+
response = client.chat.completions.create(
|
|
49
|
+
model="deepseek-chat",
|
|
50
|
+
messages=[{"role": "user", "content": "Hello"}],
|
|
51
|
+
)
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## License
|
|
55
|
+
|
|
56
|
+
MIT © OrbiGPU
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
orbigpu
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "orbigpu"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "OrbiGPU — Unified OpenAI-compatible API gateway for 100+ LLM models. Official SDK coming in v0.1.0."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "OrbiGPU" }]
|
|
13
|
+
keywords = ["llm", "ai", "openai", "anthropic", "gpt", "claude", "deepseek", "api", "orbigpu"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Programming Language :: Python :: 3",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://orbigpu.com"
|
|
29
|
+
Documentation = "https://orbigpu.com/docs"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools.packages.find]
|
|
32
|
+
where = ["."]
|
|
33
|
+
include = ["orbigpu*"]
|
orbigpu-0.0.1/setup.cfg
ADDED