greet
Generate personalized greetings tailored to individual names and desired politeness levels. Perfect for client-server interactions showcasing TypeScript integration.
Instructions
Generates a personalized greeting.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| name | Yes | The name of the person to greet. | |
| politeness | No | Desired politeness level. | informal | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "name": {
      "description": "The name of the person to greet.",
      "type": "string"
    },
    "politeness": {
      "default": "informal",
      "description": "Desired politeness level.",
      "enum": [
        "formal",
        "informal"
      ],
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}