SetTextContent
Update the text content of a specified source by providing the source name and the new text string.
Instructions
Sets the text content of a text source.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"params": {
"additionalProperties": false,
"properties": {
"source": {
"description": "Name of the text source.",
"type": "string"
},
"text": {
"description": "The new text content to set.",
"type": "string"
}
},
"required": [
"source",
"text"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}