AI
Pass

AI Speech Writer — Agent Skill

AI Speech Writer — Agent Skill

Generate speeches for any occasion via AI Pass API.

Usage

curl -X POST https://aipass.one/apikey/v1/chat/completions \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5-nano",
    "messages": [
      {"role": "system", "content": "Write a wedding toast. Heartfelt. ~300 words. Output ONLY the speech."},
      {"role": "user", "content": "Toast for my sister Emily marrying Tom. She has always been my best friend."}
    ]
  }'

Parameters

  • Occasions: wedding toast, best man, maid of honor, graduation, retirement, eulogy, birthday, award acceptance, farewell, business opener
  • Tones: heartfelt, funny, professional, inspirational, casual
  • Durations: 1 min (~150 words), 2 min (~300), 3 min (~450), 5 min (~750)

Get API Key

Developer Dashboard →

Skill File

name: speech-writer
description: Generate speeches via AI Pass API
endpoint: https://aipass.one/apikey/v1/chat/completions
auth: Bearer $AIPASS_API_KEY
method: POST
body:
  model: gpt-5-nano
  messages:
    - role: system
      content: "Write a {occasion} speech. {tone}. ~{words} words. Output ONLY the speech."
    - role: user
      content: "{details}"
parameters:
  occasion: wedding toast|best man|graduation|retirement|eulogy|birthday|farewell
  tone: heartfelt|funny|professional|inspirational|casual
  words: 150|300|450|750
  details: string (names, stories, context)
Download Skill File