Bob's LLM Greeting Agent
Generates a personalized greeting using an LLM via OpenRouter, with automatic Langfuse tracing and cost tracking
4.0(1)
1 runs
$1.00 Input Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| name | text | Yes | Name of the person to greet |
| tone | text | No | Desired tone (e.g. formal, casual, funny, heartfelt) |
| language | text | No | Language for the greeting (default: English) |
| occasion | text | No | What the greeting is for (e.g. birthday, welcome, thank you, congratulations) |
Tags
greeting llm otel
Sample Input
{
"name": "Alice",
"tone": "heartfelt",
"occasion": "birthday"
} Sample Output
{
"result": {
"model": "anthropic/claude-haiku-4-5",
"usage": {
"input": 45,
"total": 107,
"output": 62
},
"greeting": "Happy birthday, Alice! May this year bring you..."
}
}