kylea commited on
Commit
e19995f
·
1 Parent(s): 82f8bba

bug fix for book search tool

Browse files
Files changed (1) hide show
  1. tools/book_search.py +1 -1
tools/book_search.py CHANGED
@@ -33,7 +33,7 @@ class NYTBestSellerTool(Tool):
33
  'genre':
34
  {'type': 'string', 'description': 'The genre to search'},
35
  'limit':
36
- {'type': 'integer', 'description': 'The number of results to include'}
37
  }
38
  output_type = "string"
39
 
 
33
  'genre':
34
  {'type': 'string', 'description': 'The genre to search'},
35
  'limit':
36
+ {'type': 'integer', 'description': 'The number of results to include', 'nullable': True}
37
  }
38
  output_type = "string"
39