search_docs
Find Google Docs by name using the Drive API. Input a query, Google email, and service to retrieve a formatted list of matching documents, streamlining document searches in Google Workspace.
Instructions
Searches for Google Docs by name using Drive API (mimeType filter).
Returns:
str: A formatted list of Google Docs matching the search query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_size | No | ||
query | Yes | ||
service | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_size": {
"default": 10,
"title": "Page Size",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
},
"service": {
"title": "service",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"query"
],
"title": "search_docsArguments",
"type": "object"
}