Fix format string in pinecone error handling (#2897)

fix_agent_callbacks
Peter Stolz 1 year ago committed by GitHub
parent 86189cdcf9
commit ccacf804a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -218,7 +218,7 @@ class Pinecone(VectorStore):
else:
raise ValueError(
f"Index '{index_name}' not found in your Pinecone project. "
"Did you mean one of the following indexes: {', '.join(indexes)}"
f"Did you mean one of the following indexes: {', '.join(indexes)}"
)
for i in range(0, len(texts), batch_size):

Loading…
Cancel
Save