hello
Generate a greeting message by providing a name to receive a personalized welcome response.
Instructions
A simple tool that returns a greeting.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | World |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"default": "World",
"title": "Name",
"type": "string"
}
},
"type": "object"
}