greeting
Generate customized greetings tailored to individual names and preferred styles (formal, casual, enthusiastic)
Instructions
Create personalized greetings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the person to greet | |
style | No | Style of greeting |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the person to greet",
"type": "string"
},
"style": {
"description": "Style of greeting",
"enum": [
"formal",
"casual",
"enthusiastic"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}