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
Copy file name to clipboardExpand all lines: griptape/drivers/vector/base_vector_store_driver.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ def upsert_text_artifacts(
42
42
**kwargs,
43
43
) ->list[str] |dict[str, list[str]]:
44
44
warnings.warn(
45
-
"`BaseVectorStoreDriver.upsert_text_artifacts` is deprecated and will be removed in a future release. `BaseEmbeddingDriver.upsert_collection` is a drop-in replacement.",
45
+
"`BaseVectorStoreDriver.upsert_text_artifacts` is deprecated and will be removed in a future release. `BaseVectorStoreDriver.upsert_collection` is a drop-in replacement.",
46
46
DeprecationWarning,
47
47
stacklevel=2,
48
48
)
@@ -58,7 +58,7 @@ def upsert_text_artifact(
58
58
**kwargs,
59
59
) ->str:
60
60
warnings.warn(
61
-
"`BaseVectorStoreDriver.upsert_text_artifacts` is deprecated and will be removed in a future release. `BaseEmbeddingDriver.upsert` is a drop-in replacement.",
61
+
"`BaseVectorStoreDriver.upsert_text_artifacts` is deprecated and will be removed in a future release. `BaseVectorStoreDriver.upsert` is a drop-in replacement.",
62
62
DeprecationWarning,
63
63
stacklevel=2,
64
64
)
@@ -74,7 +74,7 @@ def upsert_text(
74
74
**kwargs,
75
75
) ->str:
76
76
warnings.warn(
77
-
"`BaseVectorStoreDriver.upsert_text` is deprecated and will be removed in a future release. `BaseEmbeddingDriver.upsert` is a drop-in replacement.",
77
+
"`BaseVectorStoreDriver.upsert_text` is deprecated and will be removed in a future release. `BaseVectorStoreDriver.upsert` is a drop-in replacement.",
0 commit comments