forked from phoenix/litellm-mirror
fix - allow base64 cache hits embedding responses
This commit is contained in:
parent
c86213ac98
commit
0c26404cb3
1 changed files with 2 additions and 2 deletions
|
@ -606,7 +606,7 @@ class ModelResponse(OpenAIObject):
|
||||||
|
|
||||||
|
|
||||||
class Embedding(OpenAIObject):
|
class Embedding(OpenAIObject):
|
||||||
embedding: list = []
|
embedding: Union[list, str] = []
|
||||||
index: int
|
index: int
|
||||||
object: str
|
object: str
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue