Correct the usage of the parameters when the default collection is used (#41)
This commit is contained in:
@@ -87,7 +87,7 @@ class QdrantMCPServer(FastMCP):
|
|||||||
metadata: Metadata = None,
|
metadata: Metadata = None,
|
||||||
) -> str:
|
) -> str:
|
||||||
return await store(
|
return await store(
|
||||||
ctx, information, metadata, self.qdrant_settings.collection_name
|
ctx, information, self.qdrant_settings.collection_name, metadata
|
||||||
)
|
)
|
||||||
|
|
||||||
async def find(
|
async def find(
|
||||||
@@ -101,7 +101,6 @@ class QdrantMCPServer(FastMCP):
|
|||||||
:param query: The query to use for the search.
|
:param query: The query to use for the search.
|
||||||
:param collection_name: The name of the collection to search in, optional. If not provided,
|
:param collection_name: The name of the collection to search in, optional. If not provided,
|
||||||
the default collection is used.
|
the default collection is used.
|
||||||
:param limit: The maximum number of entries to return, optional. Default is 10.
|
|
||||||
:return: A list of entries found.
|
:return: A list of entries found.
|
||||||
"""
|
"""
|
||||||
await ctx.debug(f"Finding results for query {query}")
|
await ctx.debug(f"Finding results for query {query}")
|
||||||
|
|||||||
Reference in New Issue
Block a user