search_google_documents
Search and retrieve specific content from Google Docs using a query. Specify the maximum number of results to streamline document discovery and access relevant information efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | 取得する最大結果数(デフォルト: 10) | |
query | Yes | 検索クエリ |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxResults": {
"description": "取得する最大結果数(デフォルト: 10)",
"type": "number"
},
"query": {
"description": "検索クエリ",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}