search_books_by_author
Find books by author name to locate specific titles or discover an author's complete works in the bookstore inventory.
Instructions
Search books by author.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author_query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"author_query": {
"title": "Author Query",
"type": "string"
}
},
"required": [
"author_query"
],
"type": "object"
}