autonomize-core 0.1.9__tar.gz → 0.1.12__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.
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/PKG-INFO +17 -13
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/README.md +15 -11
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/pyproject.toml +2 -2
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/LICENSE +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/core/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/core/base_client.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/core/credential.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/exceptions/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/exceptions/core/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/exceptions/core/credentials.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/py.typed +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/types/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/types/core/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/types/core/base_client.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/utils/__init__.py +0 -0
- {autonomize_core-0.1.9 → autonomize_core-0.1.12}/autonomize/utils/logger.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: autonomize-core
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.12
|
4
4
|
Summary: Autonomize Core contains the unified authentication source to access platform.
|
5
5
|
License: Proprietary
|
6
6
|
Author: Varun Prakash
|
@@ -19,7 +19,7 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
20
20
|
Classifier: Topic :: Text Processing
|
21
21
|
Classifier: Typing :: Typed
|
22
|
-
Requires-Dist: httpx (>=0.
|
22
|
+
Requires-Dist: httpx (>=0.27.0,<0.28.0)
|
23
23
|
Project-URL: Documentation, https://github.com/autonomize-ai/autonomize-core
|
24
24
|
Project-URL: Homepage, https://github.com/autonomize-ai/autonomize-core
|
25
25
|
Project-URL: Repository, https://github.com/autonomize-ai/autonomize-core
|
@@ -92,26 +92,30 @@ cred = ModelhubCredential(
|
|
92
92
|
token = await cred.aget_token()
|
93
93
|
```
|
94
94
|
|
95
|
-
##
|
96
|
-
|
97
|
-
To contribute in our Autonomize Core SDK, please refer to our [Contribution Guidelines](CONTRIBUTING.md).
|
98
|
-
|
99
|
-
## License
|
100
|
-
Copyright (C) Autonomize AI - All Rights Reserved
|
101
|
-
|
102
|
-
The contents of this repository cannot be copied and/or distributed without the explicit permission from Autonomize.ai
|
103
|
-
|
104
|
-
# New preferred environment variables:
|
95
|
+
## New preferred environment variables:
|
96
|
+
```
|
105
97
|
MODELHUB_URI=https://your-modelhub.com
|
106
98
|
MODELHUB_AUTH_CLIENT_ID=your_client_id
|
107
99
|
MODELHUB_AUTH_CLIENT_SECRET=your_secret
|
108
100
|
GENESIS_CLIENT_ID=your_genesis_client
|
109
101
|
GENESIS_COPILOT_ID=your_copilot
|
102
|
+
```
|
110
103
|
|
111
|
-
|
104
|
+
## Old environment variables (still work for backward compatibility):
|
105
|
+
```
|
112
106
|
MODELHUB_BASE_URL=https://your-modelhub.com
|
113
107
|
MODELHUB_CLIENT_ID=your_client_id
|
114
108
|
MODELHUB_CLIENT_SECRET=your_secret
|
115
109
|
CLIENT_ID=your_client
|
116
110
|
COPILOT_ID=your_copilot
|
111
|
+
```
|
112
|
+
|
113
|
+
## Contribution
|
114
|
+
|
115
|
+
To contribute in our Autonomize Core SDK, please refer to our [Contribution Guidelines](CONTRIBUTING.md).
|
116
|
+
|
117
|
+
## License
|
118
|
+
Copyright (C) Autonomize AI - All Rights Reserved
|
119
|
+
|
120
|
+
The contents of this repository cannot be copied and/or distributed without the explicit permission from Autonomize.ai
|
117
121
|
|
@@ -65,25 +65,29 @@ cred = ModelhubCredential(
|
|
65
65
|
token = await cred.aget_token()
|
66
66
|
```
|
67
67
|
|
68
|
-
##
|
69
|
-
|
70
|
-
To contribute in our Autonomize Core SDK, please refer to our [Contribution Guidelines](CONTRIBUTING.md).
|
71
|
-
|
72
|
-
## License
|
73
|
-
Copyright (C) Autonomize AI - All Rights Reserved
|
74
|
-
|
75
|
-
The contents of this repository cannot be copied and/or distributed without the explicit permission from Autonomize.ai
|
76
|
-
|
77
|
-
# New preferred environment variables:
|
68
|
+
## New preferred environment variables:
|
69
|
+
```
|
78
70
|
MODELHUB_URI=https://your-modelhub.com
|
79
71
|
MODELHUB_AUTH_CLIENT_ID=your_client_id
|
80
72
|
MODELHUB_AUTH_CLIENT_SECRET=your_secret
|
81
73
|
GENESIS_CLIENT_ID=your_genesis_client
|
82
74
|
GENESIS_COPILOT_ID=your_copilot
|
75
|
+
```
|
83
76
|
|
84
|
-
|
77
|
+
## Old environment variables (still work for backward compatibility):
|
78
|
+
```
|
85
79
|
MODELHUB_BASE_URL=https://your-modelhub.com
|
86
80
|
MODELHUB_CLIENT_ID=your_client_id
|
87
81
|
MODELHUB_CLIENT_SECRET=your_secret
|
88
82
|
CLIENT_ID=your_client
|
89
83
|
COPILOT_ID=your_copilot
|
84
|
+
```
|
85
|
+
|
86
|
+
## Contribution
|
87
|
+
|
88
|
+
To contribute in our Autonomize Core SDK, please refer to our [Contribution Guidelines](CONTRIBUTING.md).
|
89
|
+
|
90
|
+
## License
|
91
|
+
Copyright (C) Autonomize AI - All Rights Reserved
|
92
|
+
|
93
|
+
The contents of this repository cannot be copied and/or distributed without the explicit permission from Autonomize.ai
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "autonomize-core"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.12"
|
4
4
|
description = "Autonomize Core contains the unified authentication source to access platform."
|
5
5
|
authors = ["Varun Prakash <varun.prakash@autonomize.ai>"]
|
6
6
|
readme = "README.md"
|
@@ -29,7 +29,7 @@ documentation = "https://github.com/autonomize-ai/autonomize-core"
|
|
29
29
|
|
30
30
|
[tool.poetry.dependencies]
|
31
31
|
python = "^3.12"
|
32
|
-
httpx = "
|
32
|
+
httpx = ">=0.27.0,<0.28.0"
|
33
33
|
|
34
34
|
[tool.poetry.group.dev]
|
35
35
|
optional = 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
|
File without changes
|