mirror of
https://github.com/khoj-ai/khoj.git
synced 2025-02-17 08:04:21 +00:00
Do not pass verbose argument to image_search.query() as not supported
This commit is contained in:
parent
80ac10835c
commit
af1dd31401
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ def search(q: str, n: Optional[int] = 5, t: Optional[SearchType] = None, r: Opti
|
|||
if (t == SearchType.Image or t == None) and model.image_search:
|
||||
# query images
|
||||
query_start = time.time()
|
||||
hits = image_search.query(user_query, results_count, model.image_search, verbose=verbose)
|
||||
hits = image_search.query(user_query, results_count, model.image_search)
|
||||
output_directory = f'{os.getcwd()}/{web_directory}'
|
||||
query_end = time.time()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue