Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Generate platform-specific CTAs and titles
praisonai recipe run ai-cta-generator \ --input '{"topic": "AI tutorial", "platform": "youtube"}' \ --json
import sys sys.path.insert(0, 'agent_recipes/templates/ai-cta-generator') from tools import generate_cta, generate_title # Generate CTA cta = generate_cta("AI tutorial video", platform="youtube") # Generate title title = generate_title("AI agents tutorial", platform="youtube")
{ "type": "object", "properties": { "topic": {"type": "string"}, "platform": { "type": "string", "enum": ["youtube", "x", "linkedin", "instagram", "tiktok"] }, "cta_type": { "type": "string", "enum": ["subscribe", "like", "comment", "share", "link"] } } }
{ "cta": "Subscribe and hit the bell...", "title": "AI Agents: The Complete Guide", "platform": "youtube" }