mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
fix: tongyi Error: 'NoneType' object is not subscriptable (#7705)
This commit is contained in:
parent
d9198b5646
commit
da326baa5e
|
@ -137,9 +137,19 @@ class TongyiTextEmbeddingModel(_CommonTongyi, TextEmbeddingModel):
|
||||||
input=text,
|
input=text,
|
||||||
text_type="document",
|
text_type="document",
|
||||||
)
|
)
|
||||||
data = response.output["embeddings"][0]
|
if response.output and "embeddings" in response.output and response.output["embeddings"]:
|
||||||
embeddings.append(data["embedding"])
|
data = response.output["embeddings"][0]
|
||||||
embedding_used_tokens += response.usage["total_tokens"]
|
if "embedding" in data:
|
||||||
|
embeddings.append(data["embedding"])
|
||||||
|
else:
|
||||||
|
raise ValueError("Embedding data is missing in the response.")
|
||||||
|
else:
|
||||||
|
raise ValueError("Response output is missing or does not contain embeddings.")
|
||||||
|
|
||||||
|
if response.usage and "total_tokens" in response.usage:
|
||||||
|
embedding_used_tokens += response.usage["total_tokens"]
|
||||||
|
else:
|
||||||
|
raise ValueError("Response usage is missing or does not contain total tokens.")
|
||||||
|
|
||||||
return [list(map(float, e)) for e in embeddings], embedding_used_tokens
|
return [list(map(float, e)) for e in embeddings], embedding_used_tokens
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user