Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mindsdb_sdk/knowledge_bases.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def __init__(self, api, project, data: dict):
def __repr__(self):
return f'{self.__class__.__name__}({self.project.name}.{self.name})'

def find(self, query: str, limit: int = 100):
def find(self, query: str, limit: int = 10):
"""

Query data from knowledge base.
Expand All @@ -98,7 +98,7 @@ def find(self, query: str, limit: int = 100):
>>> print(query.fetch())

:param query: text query
:param limit: count of rows in result, default 100
:param limit: count of rows in result, default 10
:return: Query object
"""

Expand Down