We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 660dac4 commit f77170fCopy full SHA for f77170f
1 file changed
apps/models_provider/impl/siliconCloud_model_provider/model/embedding.py
@@ -50,7 +50,6 @@ def embed_query(self, text: str) -> list:
50
}
51
52
response = requests.post(self.base_url + '/embeddings', json=payload, headers=headers)
53
- print(response.text)
54
data = response.json()
55
if data['data'] is None or 'code' in data:
56
raise ValueError(f"Embedding API returned no data: {data}")
0 commit comments