kalibr 1.0.23__tar.gz → 1.0.25__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.
Files changed (31) hide show
  1. {kalibr-1.0.23/kalibr.egg-info → kalibr-1.0.25}/PKG-INFO +6 -32
  2. kalibr-1.0.25/kalibr/__init__.py +5 -0
  3. {kalibr-1.0.23 → kalibr-1.0.25/kalibr.egg-info}/PKG-INFO +6 -32
  4. kalibr-1.0.25/kalibr.egg-info/entry_points.txt +2 -0
  5. kalibr-1.0.25/kalibr.egg-info/requires.txt +7 -0
  6. kalibr-1.0.25/pyproject.toml +22 -0
  7. {kalibr-1.0.23 → kalibr-1.0.25}/setup.py +1 -1
  8. kalibr-1.0.23/kalibr/__init__.py +0 -7
  9. kalibr-1.0.23/kalibr.egg-info/entry_points.txt +0 -2
  10. kalibr-1.0.23/kalibr.egg-info/requires.txt +0 -19
  11. kalibr-1.0.23/pyproject.toml +0 -76
  12. {kalibr-1.0.23 → kalibr-1.0.25}/LICENSE +0 -0
  13. {kalibr-1.0.23 → kalibr-1.0.25}/MANIFEST.in +0 -0
  14. {kalibr-1.0.23 → kalibr-1.0.25}/README.md +0 -0
  15. {kalibr-1.0.23 → kalibr-1.0.25}/examples/README.md +0 -0
  16. {kalibr-1.0.23 → kalibr-1.0.25}/examples/__init__.py +0 -0
  17. {kalibr-1.0.23 → kalibr-1.0.25}/examples/basic_kalibr_example.py +0 -0
  18. {kalibr-1.0.23 → kalibr-1.0.25}/examples/enhanced_kalibr_example.py +0 -0
  19. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/__main__.py +0 -0
  20. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/deployment.py +0 -0
  21. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/kalibr.py +0 -0
  22. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/kalibr_app.py +0 -0
  23. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/packager.py +0 -0
  24. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/runtime_router.py +0 -0
  25. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/schema_generators.py +0 -0
  26. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/types.py +0 -0
  27. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr/validator.py +0 -0
  28. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr.egg-info/SOURCES.txt +0 -0
  29. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr.egg-info/dependency_links.txt +0 -0
  30. {kalibr-1.0.23 → kalibr-1.0.25}/kalibr.egg-info/top_level.txt +0 -0
  31. {kalibr-1.0.23 → kalibr-1.0.25}/setup.cfg +0 -0
@@ -1,48 +1,22 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kalibr
3
- Version: 1.0.23
4
- Summary: Multi-Model AI Integration Framework
3
+ Version: 1.0.25
4
+ Summary: Multi-Model MCP SDK — deploy to GPT, Claude, Gemini, Copilot from one codebase.
5
5
  Home-page: https://github.com/devonakelley/kalibr-sdk
6
6
  Author: Kalibr Team
7
- Author-email: Kalibr Team <team@kalibr.dev>
8
- License: MIT
9
- Project-URL: Homepage, https://kalibr.dev
10
- Project-URL: Documentation, https://kalibr.dev/docs
11
- Project-URL: Repository, https://github.com/devonakelley/kalibr-sdk
12
- Project-URL: Bug Reports, https://github.com/devonakelley/kalibr-sdk/issues
13
- Keywords: ai,api,framework,gpt,claude,gemini,copilot,multi-model,sdk
14
- Classifier: Development Status :: 4 - Beta
15
- Classifier: Intended Audience :: Developers
16
- Classifier: License :: OSI Approved :: MIT License
17
- Classifier: Operating System :: OS Independent
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
23
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
7
+ Author-email: team@kalibr.dev
24
8
  Requires-Python: >=3.11
25
9
  Description-Content-Type: text/markdown
26
10
  License-File: LICENSE
27
11
  Requires-Dist: fastapi>=0.110.1
28
12
  Requires-Dist: uvicorn>=0.25.0
29
- Requires-Dist: pydantic>=2.6.4
30
13
  Requires-Dist: typer>=0.9.0
14
+ Requires-Dist: pydantic>=2.6.4
31
15
  Requires-Dist: requests>=2.31.0
32
- Requires-Dist: python-jose[cryptography]>=3.3.0
33
- Requires-Dist: passlib[bcrypt]>=1.7.4
34
- Requires-Dist: python-multipart>=0.0.9
35
- Requires-Dist: motor>=3.3.1
36
- Requires-Dist: pymongo>=4.5.0
37
- Requires-Dist: boto3>=1.34.129
38
16
  Requires-Dist: aiofiles>=23.2.1
39
- Provides-Extra: dev
40
- Requires-Dist: pytest>=8.0.0; extra == "dev"
41
- Requires-Dist: black>=24.1.1; extra == "dev"
42
- Requires-Dist: isort>=5.13.2; extra == "dev"
43
- Requires-Dist: flake8>=7.0.0; extra == "dev"
44
- Requires-Dist: mypy>=1.8.0; extra == "dev"
17
+ Requires-Dist: jsonschema>=4.21.1
45
18
  Dynamic: author
19
+ Dynamic: author-email
46
20
  Dynamic: home-page
47
21
  Dynamic: license-file
48
22
  Dynamic: requires-python
@@ -0,0 +1,5 @@
1
+ from .kalibr_app import KalibrApp
2
+ from .kalibr import Kalibr
3
+
4
+ __all__ = ["Kalibr", "KalibrApp"]
5
+ __version__ = "1.0.25"
@@ -1,48 +1,22 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kalibr
3
- Version: 1.0.23
4
- Summary: Multi-Model AI Integration Framework
3
+ Version: 1.0.25
4
+ Summary: Multi-Model MCP SDK — deploy to GPT, Claude, Gemini, Copilot from one codebase.
5
5
  Home-page: https://github.com/devonakelley/kalibr-sdk
6
6
  Author: Kalibr Team
7
- Author-email: Kalibr Team <team@kalibr.dev>
8
- License: MIT
9
- Project-URL: Homepage, https://kalibr.dev
10
- Project-URL: Documentation, https://kalibr.dev/docs
11
- Project-URL: Repository, https://github.com/devonakelley/kalibr-sdk
12
- Project-URL: Bug Reports, https://github.com/devonakelley/kalibr-sdk/issues
13
- Keywords: ai,api,framework,gpt,claude,gemini,copilot,multi-model,sdk
14
- Classifier: Development Status :: 4 - Beta
15
- Classifier: Intended Audience :: Developers
16
- Classifier: License :: OSI Approved :: MIT License
17
- Classifier: Operating System :: OS Independent
18
- Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
- Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
23
- Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
7
+ Author-email: team@kalibr.dev
24
8
  Requires-Python: >=3.11
25
9
  Description-Content-Type: text/markdown
26
10
  License-File: LICENSE
27
11
  Requires-Dist: fastapi>=0.110.1
28
12
  Requires-Dist: uvicorn>=0.25.0
29
- Requires-Dist: pydantic>=2.6.4
30
13
  Requires-Dist: typer>=0.9.0
14
+ Requires-Dist: pydantic>=2.6.4
31
15
  Requires-Dist: requests>=2.31.0
32
- Requires-Dist: python-jose[cryptography]>=3.3.0
33
- Requires-Dist: passlib[bcrypt]>=1.7.4
34
- Requires-Dist: python-multipart>=0.0.9
35
- Requires-Dist: motor>=3.3.1
36
- Requires-Dist: pymongo>=4.5.0
37
- Requires-Dist: boto3>=1.34.129
38
16
  Requires-Dist: aiofiles>=23.2.1
39
- Provides-Extra: dev
40
- Requires-Dist: pytest>=8.0.0; extra == "dev"
41
- Requires-Dist: black>=24.1.1; extra == "dev"
42
- Requires-Dist: isort>=5.13.2; extra == "dev"
43
- Requires-Dist: flake8>=7.0.0; extra == "dev"
44
- Requires-Dist: mypy>=1.8.0; extra == "dev"
17
+ Requires-Dist: jsonschema>=4.21.1
45
18
  Dynamic: author
19
+ Dynamic: author-email
46
20
  Dynamic: home-page
47
21
  Dynamic: license-file
48
22
  Dynamic: requires-python
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ kalibr = kalibr.__main__:main
@@ -0,0 +1,7 @@
1
+ fastapi>=0.110.1
2
+ uvicorn>=0.25.0
3
+ typer>=0.9.0
4
+ pydantic>=2.6.4
5
+ requests>=2.31.0
6
+ aiofiles>=23.2.1
7
+ jsonschema>=4.21.1
@@ -0,0 +1,22 @@
1
+ [project]
2
+ name = "kalibr"
3
+ version = "1.0.25"
4
+ description = "Multi-Model MCP SDK — deploy to GPT, Claude, Gemini, Copilot from one codebase."
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = [
8
+ "fastapi>=0.110.1",
9
+ "uvicorn>=0.25.0",
10
+ "typer>=0.9.0",
11
+ "pydantic>=2.6.4",
12
+ "requests>=2.31.0",
13
+ "aiofiles>=23.2.1",
14
+ "jsonschema>=4.21.1"
15
+ ]
16
+
17
+ [project.scripts]
18
+ kalibr = "kalibr.__main__:main"
19
+
20
+ [build-system]
21
+ requires = ["setuptools>=61.0", "wheel", "build"]
22
+ build-backend = "setuptools.build_meta"
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="kalibr",
5
- version="1.0.23",
5
+ version="1.0.25",
6
6
  author="Kalibr Team",
7
7
  author_email="team@kalibr.dev",
8
8
  description="Multi-Model AI Integration Framework",
@@ -1,7 +0,0 @@
1
- """Kalibr SDK - Multi-Model AI Integration Framework"""
2
-
3
- from kalibr.kalibr import Kalibr
4
- from kalibr.kalibr_app import KalibrApp
5
-
6
- __version__ = "1.0.20"
7
- __all__ = ["Kalibr", "KalibrApp"]
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- kalibr-connect = kalibr.__main__:main
@@ -1,19 +0,0 @@
1
- fastapi>=0.110.1
2
- uvicorn>=0.25.0
3
- pydantic>=2.6.4
4
- typer>=0.9.0
5
- requests>=2.31.0
6
- python-jose[cryptography]>=3.3.0
7
- passlib[bcrypt]>=1.7.4
8
- python-multipart>=0.0.9
9
- motor>=3.3.1
10
- pymongo>=4.5.0
11
- boto3>=1.34.129
12
- aiofiles>=23.2.1
13
-
14
- [dev]
15
- pytest>=8.0.0
16
- black>=24.1.1
17
- isort>=5.13.2
18
- flake8>=7.0.0
19
- mypy>=1.8.0
@@ -1,76 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=61", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "kalibr"
7
- version = "1.0.23"
8
- description = "Multi-Model AI Integration Framework"
9
- readme = "README.md"
10
- requires-python = ">=3.11"
11
- license = {text = "MIT"}
12
- authors = [
13
- {name = "Kalibr Team", email = "team@kalibr.dev"},
14
- ]
15
- keywords = ["ai", "api", "framework", "gpt", "claude", "gemini", "copilot", "multi-model", "sdk"]
16
- classifiers = [
17
- "Development Status :: 4 - Beta",
18
- "Intended Audience :: Developers",
19
- "License :: OSI Approved :: MIT License",
20
- "Operating System :: OS Independent",
21
- "Programming Language :: Python :: 3",
22
- "Programming Language :: Python :: 3.11",
23
- "Programming Language :: Python :: 3.12",
24
- "Topic :: Software Development :: Libraries :: Python Modules",
25
- "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
26
- "Topic :: Scientific/Engineering :: Artificial Intelligence",
27
- ]
28
- dependencies = [
29
- "fastapi>=0.110.1",
30
- "uvicorn>=0.25.0",
31
- "pydantic>=2.6.4",
32
- "typer>=0.9.0",
33
- "requests>=2.31.0",
34
- "python-jose[cryptography]>=3.3.0",
35
- "passlib[bcrypt]>=1.7.4",
36
- "python-multipart>=0.0.9",
37
- "motor>=3.3.1",
38
- "pymongo>=4.5.0",
39
- "boto3>=1.34.129",
40
- "aiofiles>=23.2.1"
41
- ]
42
-
43
- [project.optional-dependencies]
44
- dev = [
45
- "pytest>=8.0.0",
46
- "black>=24.1.1",
47
- "isort>=5.13.2",
48
- "flake8>=7.0.0",
49
- "mypy>=1.8.0"
50
- ]
51
-
52
- [project.urls]
53
- Homepage = "https://kalibr.dev"
54
- Documentation = "https://kalibr.dev/docs"
55
- Repository = "https://github.com/devonakelley/kalibr-sdk"
56
- "Bug Reports" = "https://github.com/devonakelley/kalibr-sdk/issues"
57
-
58
- [project.scripts]
59
- kalibr-connect = "kalibr.__main__:main"
60
-
61
- [tool.setuptools]
62
- packages = ["kalibr"]
63
-
64
- [tool.black]
65
- line-length = 100
66
- target-version = ['py311']
67
-
68
- [tool.isort]
69
- profile = "black"
70
- line_length = 100
71
-
72
- [tool.mypy]
73
- python_version = "3.11"
74
- warn_return_any = true
75
- warn_unused_configs = true
76
- disallow_untyped_defs = true
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