We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9def978 commit 5d601f1Copy full SHA for 5d601f1
eyepop/data/data_types.py
@@ -161,8 +161,8 @@ class PredictedClass(BaseModel):
161
category: str | None = None
162
163
class PredictedEmbedding(BaseModel):
164
- x: float
165
- y: float
+ x: float | None = None
+ y: float | None = None
166
embedding: List[float]
167
168
class PredictedText(BaseModel):
pyproject.toml
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
9
10
[project]
11
name = "eyepop"
12
-version = "1.14.4"
+version = "1.14.5"
13
description="EyePop.ai Python SDK"
14
readme = "README.md"
15
license.file = "./LICENSE"
0 commit comments