But there are ways to use euclidean if you want to, for example with Pinecone:
Plain Text
if "quickstart-index" not in indexes:
# dimensions are for text-embedding-ada-002
pinecone.create_index(
"quickstart-index", dimension=1536, metric="euclidean", pod_type="p1"
)