unitypredict-engines 0.0.2__tar.gz → 0.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unitypredict-engines
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Description-Content-Type: text/markdown
5
5
 
6
6
  # UnityPredict Local App Engine Creator
@@ -41,7 +41,7 @@ Given below is an example of a simple **`EntryPoint.py`**
41
41
 
42
42
 
43
43
  ```python
44
- from unitypredict.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
44
+ from unitypredict_engines.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
45
45
  import datetime
46
46
 
47
47
 
@@ -79,7 +79,7 @@ In order to run the `EntryPoint.py` locally, add the following `main` section to
79
79
 
80
80
  if __name__ == "__main__":
81
81
 
82
- from unitypredict import UnityPredictHost
82
+ from unitypredict_engines import UnityPredictHost
83
83
 
84
84
  # Initialize the UnityPredict Platform
85
85
  platform = UnityPredictHost()
@@ -155,12 +155,12 @@ The templated `config.json` looks like this:
155
155
  And the tree structure of the generated directory will be:
156
156
  ```plaintext
157
157
  {userPWD}/
158
- ├── unitypredict_mocktool/
159
- | ├── models/
160
- | ├── requests/
161
- | └── tmp/
162
- └── EntryPoint.py
163
- └── config.json
158
+ |-- unitypredict_mocktool/
159
+ | |-- models/
160
+ | |-- requests/
161
+ | |-- tmp/
162
+ |-- EntryPoint.py
163
+ |-- config.json
164
164
  ```
165
165
 
166
166
  Details of the JSON settings:
@@ -36,7 +36,7 @@ Given below is an example of a simple **`EntryPoint.py`**
36
36
 
37
37
 
38
38
  ```python
39
- from unitypredict.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
39
+ from unitypredict_engines.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
40
40
  import datetime
41
41
 
42
42
 
@@ -74,7 +74,7 @@ In order to run the `EntryPoint.py` locally, add the following `main` section to
74
74
 
75
75
  if __name__ == "__main__":
76
76
 
77
- from unitypredict import UnityPredictHost
77
+ from unitypredict_engines import UnityPredictHost
78
78
 
79
79
  # Initialize the UnityPredict Platform
80
80
  platform = UnityPredictHost()
@@ -150,12 +150,12 @@ The templated `config.json` looks like this:
150
150
  And the tree structure of the generated directory will be:
151
151
  ```plaintext
152
152
  {userPWD}/
153
- ├── unitypredict_mocktool/
154
- | ├── models/
155
- | ├── requests/
156
- | └── tmp/
157
- └── EntryPoint.py
158
- └── config.json
153
+ |-- unitypredict_mocktool/
154
+ | |-- models/
155
+ | |-- requests/
156
+ | |-- tmp/
157
+ |-- EntryPoint.py
158
+ |-- config.json
159
159
  ```
160
160
 
161
161
  Details of the JSON settings:
@@ -8,7 +8,7 @@ print ("Possible packages: {}".format(find_packages()))
8
8
 
9
9
  setup (
10
10
  name="unitypredict-engines",
11
- version="0.0.2",
11
+ version="0.0.4",
12
12
  packages=find_packages(),
13
13
  install_requires=[
14
14
  # Currently no dependencies
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unitypredict-engines
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Description-Content-Type: text/markdown
5
5
 
6
6
  # UnityPredict Local App Engine Creator
@@ -41,7 +41,7 @@ Given below is an example of a simple **`EntryPoint.py`**
41
41
 
42
42
 
43
43
  ```python
44
- from unitypredict.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
44
+ from unitypredict_engines.Platform import IPlatform, InferenceRequest, InferenceResponse, OutcomeValue, InferenceContextData
45
45
  import datetime
46
46
 
47
47
 
@@ -79,7 +79,7 @@ In order to run the `EntryPoint.py` locally, add the following `main` section to
79
79
 
80
80
  if __name__ == "__main__":
81
81
 
82
- from unitypredict import UnityPredictHost
82
+ from unitypredict_engines import UnityPredictHost
83
83
 
84
84
  # Initialize the UnityPredict Platform
85
85
  platform = UnityPredictHost()
@@ -155,12 +155,12 @@ The templated `config.json` looks like this:
155
155
  And the tree structure of the generated directory will be:
156
156
  ```plaintext
157
157
  {userPWD}/
158
- ├── unitypredict_mocktool/
159
- | ├── models/
160
- | ├── requests/
161
- | └── tmp/
162
- └── EntryPoint.py
163
- └── config.json
158
+ |-- unitypredict_mocktool/
159
+ | |-- models/
160
+ | |-- requests/
161
+ | |-- tmp/
162
+ |-- EntryPoint.py
163
+ |-- config.json
164
164
  ```
165
165
 
166
166
  Details of the JSON settings: