greet
Generate personalized greetings in friendly, formal, or enthusiastic styles. Customize messages by providing a name and preferred tone for appropriate communication.
Instructions
Greet someone with different styles.
Args: name: The name of the person to greet style: Greeting style - "friendly", "formal", or "enthusiastic"
Returns: str: A greeting message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the person to greet | |
| style | No | Greeting style - "friendly", "formal", or "enthusiastic" | friendly |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the person to greet",
"type": "string"
},
"style": {
"default": "friendly",
"description": "Greeting style - \"friendly\", \"formal\", or \"enthusiastic\"",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}