We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe463df commit 2d26eafCopy full SHA for 2d26eaf
docs/docs/deep-dive/retrieval_models_clients/WeaviateRM.md
@@ -13,7 +13,7 @@ An example of the WeaviateRM constructor:
13
14
```python
15
WeaviateRM(
16
- collection_name: str
+ weaviate_collection_name: str
17
weaviate_client: str,
18
k: int = 5
19
)
@@ -44,7 +44,7 @@ from dspy.retrieve.weaviate_rm import WeaviateRM
44
weaviate_client = weaviate.connect_to_embedded() # you can also use local or WCD
45
46
retriever_model = WeaviateRM(
47
- collection_name="<WEAVIATE_COLLECTION>",
+ weaviate_collection_name="<WEAVIATE_COLLECTION>",
48
weaviate_client=weaviate_client
49
50
0 commit comments