core[patch]: Fix typo in VectorStoreExampleSelector doc-string (#21574)

This commit is contained in:
Zhao Blake 2024-05-14 21:31:37 +08:00 committed by GitHub
parent 714cba96a8
commit 972d2071c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ class _VectorStoreExampleSelector(BaseExampleSelector, BaseModel, ABC):
"""Example selector that selects examples based on SemanticSimilarity."""
vectorstore: VectorStore
"""VectorStore than contains information about examples."""
"""VectorStore that contains information about examples."""
k: int = 4
"""Number of examples to select."""
example_keys: Optional[List[str]] = None