You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thoughts about pinecone integration: Create a PineconeVectorStore class, which supports 4 operations:
Initialize and create an instance of PineconeVectorStore, with API key, environment, index_name, optional dimension, optional similarity search metric:
pinecone.init(api_key="YOUR_API_KEY", environment="YOUR_ENVIRONMENT")
pinecone.create_index("quickstart", dimension=8, metric="euclidean")
index = pinecone.Index("quickstart")
Currently, only csv is supported in TigerRAG:
tiger/TigerRag/tigerrag/demo/movie_recs/utils.py
Line 20 in 8ad8d38
The text was updated successfully, but these errors were encountered: