greet
Generate a Hello World greeting message with optional name customization for testing and demonstration purposes.
Instructions
Greet the caller with a quintessential Hello World message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | The optional name to be greeted. |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The optional name to be greeted.",
"title": "Name"
}
},
"type": "object"
}