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.
Optimize hashtags and keywords for maximum reach
praisonai recipe run ai-hashtag-optimizer \ --input '{"topic": "AI agents", "platform": "instagram", "max_hashtags": 30}' \ --json
import sys sys.path.insert(0, 'agent_recipes/templates/ai-hashtag-optimizer') from tools import generate_hashtags, optimize_keywords # Generate hashtags hashtags = generate_hashtags( topic="AI agents tutorial", platform="instagram", max_hashtags=30, mix_popularity=True ) # Optimize keywords for SEO keywords = optimize_keywords( topic="AI agents", content_type="video", max_keywords=20 )
{ "type": "object", "properties": { "topic": {"type": "string"}, "platform": { "type": "string", "enum": ["instagram", "x", "linkedin", "tiktok"] }, "max_hashtags": {"type": "integer", "default": 30}, "mix_popularity": {"type": "boolean", "default": true} } }
{ "hashtags": ["#AIagents", "#MachineLearning", "#Tech"], "platform": "instagram", "count": 30 }