Google Docs
GOOGLEDOCS_INSERT_TEXT_ACTION
Tool to insert a string of text at a specified location within a Google Document. Use when you need to add new text content to an existing document.
Remote googledocs
Other tools also called GOOGLEDOCS_INSERT_TEXT_ACTION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"document_id": {
"type": "string",
"title": "Document Id",
"examples": [
"195j9e2fm7q-gL2mmx61gh-oXMUrV2Vl45678ZA"
],
"description": "The ID of the document to insert text into."
},
"text_to_insert": {
"type": "string",
"title": "Text To Insert",
"examples": [
"This is a new paragraph."
],
"description": "The string of text to insert."
},
"insertion_index": {
"type": "integer",
"title": "Insertion Index",
"examples": [
1,
50
],
"description": "The EOL character of the paragraph will be moved to the end of the inserted text. The index where the text will be inserted. The index is zero-based and refers to the UTF-16 code unit. For example, to insert text at the beginning of the document, use an index of 1 (to account for the first paragraph)."
}
}
}