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 content angles - controversial, educational, business
praisonai recipe run ai-angle-generator \ --input '{"topic": "AI replacing jobs", "num_angles": 5}' \ --json
import sys sys.path.insert(0, 'agent_recipes/templates/ai-angle-generator') from tools import generate_angles, evaluate_angles # Generate angles angles = generate_angles("AI replacing jobs", num_angles=5) # Evaluate and rank evaluated = evaluate_angles(angles["angles"])
{ "type": "object", "properties": { "topic": {"type": "string"}, "num_angles": {"type": "integer", "default": 5}, "angle_types": { "type": "array", "items": {"type": "string"} } } }
{ "angles": [ { "type": "controversial", "angle": "Why AI job replacement is actually good", "hook": "Everyone's worried about AI taking jobs, but...", "target_audience": "Tech professionals" } ] }