We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bd3c37 commit dc17713Copy full SHA for dc17713
1 file changed
src/code_explainer/utils/storage_qdrant.py
@@ -4,6 +4,9 @@
4
from crewai.memory.storage.rag_storage import RAGStorage
5
from qdrant_client import QdrantClient
6
7
+import warnings
8
+warnings.filterwarnings("ignore", category=DeprecationWarning, module="qdrant_client")
9
+
10
11
class QdrantStorage(RAGStorage):
12
"""
0 commit comments