We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b58c8b5 commit 683868bCopy full SHA for 683868b
llama_cpp/llama_types.py
@@ -25,7 +25,7 @@ class EmbeddingUsage(TypedDict):
25
class Embedding(TypedDict):
26
index: int
27
object: str
28
- embedding: list[float] | list[list[float]]
+ embedding: Union[List[float], List[List[float]]]
29
30
31
class CreateEmbeddingResponse(TypedDict):
0 commit comments