We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2dc9c commit 1103136Copy full SHA for 1103136
2 files changed
CHANGELOG.rst
@@ -1,6 +1,8 @@
1
Changelog
2
=========
3
4
+* Updated inference status enum from numerical to meaningful string values
5
+
6
v1.12.0 (2025-05-12)
7
--------------------
8
datacrunch/InferenceClient/inference_client.py
@@ -13,10 +13,10 @@ class InferenceClientError(Exception):
13
14
15
class AsyncStatus(int, Enum):
16
- Initialized = 0
17
- Queue = 1
18
- Inference = 2
19
- Completed = 3
+ Initialized = "Initialized"
+ Queue = "Queue"
+ Inference = "Inference"
+ Completed = "Completed"
20
21
22
@dataclass_json(undefined=Undefined.EXCLUDE)
0 commit comments