indoxrouter 0.1.12__tar.gz → 0.1.15__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.
- {indoxrouter-0.1.12/indoxrouter.egg-info → indoxrouter-0.1.15}/PKG-INFO +5 -24
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/README.md +1 -1
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/cookbook/README.md +1 -1
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter/constants.py +1 -1
- {indoxrouter-0.1.12 → indoxrouter-0.1.15/indoxrouter.egg-info}/PKG-INFO +5 -24
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter.egg-info/SOURCES.txt +1 -1
- indoxrouter-0.1.15/indoxrouter.egg-info/requires.txt +2 -0
- indoxrouter-0.1.15/pyproject.toml +34 -0
- indoxrouter-0.1.12/indoxrouter.egg-info/requires.txt +0 -10
- indoxrouter-0.1.12/setup.py +0 -46
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/MANIFEST.in +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/cookbook/indoxRouter_cookbook.ipynb +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter/__init__.py +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter/client.py +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter/exceptions.py +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter.egg-info/dependency_links.txt +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/indoxrouter.egg-info/top_level.txt +0 -0
- {indoxrouter-0.1.12 → indoxrouter-0.1.15}/setup.cfg +0 -0
@@ -1,13 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: indoxrouter
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.15
|
4
4
|
Summary: A unified client for various AI providers
|
5
|
-
|
6
|
-
|
7
|
-
Author-email: ashkan.eskandari.dev@gmail.com
|
5
|
+
Author-email: indoxRouter Team <ashkan.eskandari.dev@gmail.com>
|
6
|
+
Project-URL: Homepage, https://github.com/indoxrouter/indoxrouter
|
8
7
|
Classifier: Development Status :: 3 - Alpha
|
9
8
|
Classifier: Intended Audience :: Developers
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
11
9
|
Classifier: Programming Language :: Python :: 3
|
12
10
|
Classifier: Programming Language :: Python :: 3.8
|
13
11
|
Classifier: Programming Language :: Python :: 3.9
|
@@ -18,27 +16,10 @@ Requires-Python: >=3.8
|
|
18
16
|
Description-Content-Type: text/markdown
|
19
17
|
Requires-Dist: requests>=2.25.0
|
20
18
|
Requires-Dist: python-dotenv>=1.0.0
|
21
|
-
Provides-Extra: dev
|
22
|
-
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
23
|
-
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
24
|
-
Requires-Dist: black>=23.0.0; extra == "dev"
|
25
|
-
Requires-Dist: isort>=5.0.0; extra == "dev"
|
26
|
-
Requires-Dist: flake8>=6.0.0; extra == "dev"
|
27
|
-
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
28
|
-
Dynamic: author
|
29
|
-
Dynamic: author-email
|
30
|
-
Dynamic: classifier
|
31
|
-
Dynamic: description
|
32
|
-
Dynamic: description-content-type
|
33
|
-
Dynamic: home-page
|
34
|
-
Dynamic: provides-extra
|
35
|
-
Dynamic: requires-dist
|
36
|
-
Dynamic: requires-python
|
37
|
-
Dynamic: summary
|
38
19
|
|
39
20
|
# IndoxRouter Client
|
40
21
|
|
41
|
-
A unified client for various AI providers, including OpenAI,
|
22
|
+
A unified client for various AI providers, including OpenAI, anthropic, Google, and Mistral.
|
42
23
|
|
43
24
|
## Features
|
44
25
|
|
@@ -41,4 +41,4 @@ python -c "from indoxrouter import Client; client = Client(api_key='your_api_key
|
|
41
41
|
|
42
42
|
## Note on API Keys
|
43
43
|
|
44
|
-
The IndoxRouter API key is used to authenticate with the IndoxRouter server. You don't need to provide individual API keys for each provider (like OpenAI,
|
44
|
+
The IndoxRouter API key is used to authenticate with the IndoxRouter server. You don't need to provide individual API keys for each provider (like OpenAI, anthropic, etc.) as the IndoxRouter server handles that for you.
|
@@ -4,7 +4,7 @@ Constants for the IndoxRouter client.
|
|
4
4
|
|
5
5
|
# API settings
|
6
6
|
DEFAULT_API_VERSION = "v1"
|
7
|
-
DEFAULT_BASE_URL = "https://api.
|
7
|
+
DEFAULT_BASE_URL = "https://api.indoxrouter.com" # Production server URL with HTTPS
|
8
8
|
# DEFAULT_BASE_URL = "http://localhost:8000" # Local development server
|
9
9
|
DEFAULT_TIMEOUT = 60
|
10
10
|
USE_COOKIES = True # Always use cookie-based authentication
|
@@ -1,13 +1,11 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: indoxrouter
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.15
|
4
4
|
Summary: A unified client for various AI providers
|
5
|
-
|
6
|
-
|
7
|
-
Author-email: ashkan.eskandari.dev@gmail.com
|
5
|
+
Author-email: indoxRouter Team <ashkan.eskandari.dev@gmail.com>
|
6
|
+
Project-URL: Homepage, https://github.com/indoxrouter/indoxrouter
|
8
7
|
Classifier: Development Status :: 3 - Alpha
|
9
8
|
Classifier: Intended Audience :: Developers
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
11
9
|
Classifier: Programming Language :: Python :: 3
|
12
10
|
Classifier: Programming Language :: Python :: 3.8
|
13
11
|
Classifier: Programming Language :: Python :: 3.9
|
@@ -18,27 +16,10 @@ Requires-Python: >=3.8
|
|
18
16
|
Description-Content-Type: text/markdown
|
19
17
|
Requires-Dist: requests>=2.25.0
|
20
18
|
Requires-Dist: python-dotenv>=1.0.0
|
21
|
-
Provides-Extra: dev
|
22
|
-
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
23
|
-
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
24
|
-
Requires-Dist: black>=23.0.0; extra == "dev"
|
25
|
-
Requires-Dist: isort>=5.0.0; extra == "dev"
|
26
|
-
Requires-Dist: flake8>=6.0.0; extra == "dev"
|
27
|
-
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
28
|
-
Dynamic: author
|
29
|
-
Dynamic: author-email
|
30
|
-
Dynamic: classifier
|
31
|
-
Dynamic: description
|
32
|
-
Dynamic: description-content-type
|
33
|
-
Dynamic: home-page
|
34
|
-
Dynamic: provides-extra
|
35
|
-
Dynamic: requires-dist
|
36
|
-
Dynamic: requires-python
|
37
|
-
Dynamic: summary
|
38
19
|
|
39
20
|
# IndoxRouter Client
|
40
21
|
|
41
|
-
A unified client for various AI providers, including OpenAI,
|
22
|
+
A unified client for various AI providers, including OpenAI, anthropic, Google, and Mistral.
|
42
23
|
|
43
24
|
## Features
|
44
25
|
|
@@ -0,0 +1,34 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=42", "wheel"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "indoxrouter"
|
7
|
+
version = "0.1.15"
|
8
|
+
authors = [
|
9
|
+
{name = "indoxRouter Team", email = "ashkan.eskandari.dev@gmail.com"},
|
10
|
+
]
|
11
|
+
description = "A unified client for various AI providers"
|
12
|
+
readme = "README.md"
|
13
|
+
requires-python = ">=3.8"
|
14
|
+
classifiers = [
|
15
|
+
"Development Status :: 3 - Alpha",
|
16
|
+
"Intended Audience :: Developers",
|
17
|
+
"Programming Language :: Python :: 3",
|
18
|
+
"Programming Language :: Python :: 3.8",
|
19
|
+
"Programming Language :: Python :: 3.9",
|
20
|
+
"Programming Language :: Python :: 3.10",
|
21
|
+
"Programming Language :: Python :: 3.11",
|
22
|
+
"Programming Language :: Python :: 3.12",
|
23
|
+
]
|
24
|
+
dependencies = [
|
25
|
+
"requests>=2.25.0",
|
26
|
+
"python-dotenv>=1.0.0",
|
27
|
+
]
|
28
|
+
|
29
|
+
[project.urls]
|
30
|
+
Homepage = "https://github.com/indoxrouter/indoxrouter"
|
31
|
+
|
32
|
+
[tool.setuptools]
|
33
|
+
packages = ["indoxrouter"]
|
34
|
+
|
indoxrouter-0.1.12/setup.py
DELETED
@@ -1,46 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
Setup script for indoxRouter client.
|
3
|
-
"""
|
4
|
-
|
5
|
-
from setuptools import setup, find_packages
|
6
|
-
|
7
|
-
with open("README.md", "r", encoding="utf-8") as fh:
|
8
|
-
long_description = fh.read()
|
9
|
-
|
10
|
-
setup(
|
11
|
-
name="indoxrouter",
|
12
|
-
version="0.1.12",
|
13
|
-
author="indoxRouter Team",
|
14
|
-
author_email="ashkan.eskandari.dev@gmail.com",
|
15
|
-
description="A unified client for various AI providers",
|
16
|
-
long_description=long_description,
|
17
|
-
long_description_content_type="text/markdown",
|
18
|
-
url="https://github.com/indoxrouter/indoxrouter",
|
19
|
-
packages=["indoxrouter"],
|
20
|
-
classifiers=[
|
21
|
-
"Development Status :: 3 - Alpha",
|
22
|
-
"Intended Audience :: Developers",
|
23
|
-
"License :: OSI Approved :: MIT License",
|
24
|
-
"Programming Language :: Python :: 3",
|
25
|
-
"Programming Language :: Python :: 3.8",
|
26
|
-
"Programming Language :: Python :: 3.9",
|
27
|
-
"Programming Language :: Python :: 3.10",
|
28
|
-
"Programming Language :: Python :: 3.11",
|
29
|
-
"Programming Language :: Python :: 3.12",
|
30
|
-
],
|
31
|
-
python_requires=">=3.8",
|
32
|
-
install_requires=[
|
33
|
-
"requests>=2.25.0",
|
34
|
-
"python-dotenv>=1.0.0",
|
35
|
-
],
|
36
|
-
extras_require={
|
37
|
-
"dev": [
|
38
|
-
"pytest>=7.0.0",
|
39
|
-
"pytest-cov>=4.0.0",
|
40
|
-
"black>=23.0.0",
|
41
|
-
"isort>=5.0.0",
|
42
|
-
"flake8>=6.0.0",
|
43
|
-
"mypy>=1.0.0",
|
44
|
-
],
|
45
|
-
},
|
46
|
-
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|