Create Document
Creates a new document in Jasper with specified parameters.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DOCUMENT])
Generate Blog Post
Automatically generates a blog post based on given topic and keywords.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_BLOG_POST])
Write Social Media Post
Creates a social media post for a specified platform using AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_SOCIAL_MEDIA_POST])
Generate Product Description
Produces an AI-generated product description based on key features and specifications.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_PRODUCT_DESCRIPTION])
Create Email Campaign
Generates an email campaign with subject line and body content.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_EMAIL_CAMPAIGN])
Rewrite Content
Rewrites existing content to improve clarity, tone, or SEO optimization.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REWRITE_CONTENT])
Write Press Release
Generates a press release based on key information and company details.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_PRESS_RELEASE])
Create Ad Copy
Produces advertising copy for various platforms (e.g., Google Ads, Facebook Ads).
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_AD_COPY])
Generate Video Script
Creates a script for video content based on topic and target audience.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_VIDEO_SCRIPT])
Write Product Review
Generates a product review based on features, benefits, and user experience.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_PRODUCT_REVIEW])
Create Landing Page Copy
Writes compelling copy for a landing page, including headlines and CTAs.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LANDING_PAGE_COPY])
Generate FAQ Content
Creates a set of frequently asked questions and answers for a given topic.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_FAQ_CONTENT])
Write Newsletter
Generates a newsletter with curated content and personalized sections.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_NEWSLETTER])
Create Content Calendar
Generates a content calendar with topic ideas for a specified time period.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CONTENT_CALENDAR])
Translate Content
Translates existing content from one language to another using AI.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSLATE_CONTENT])
Generate Podcast Show Notes
Creates detailed show notes for a podcast episode based on key points.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_PODCAST_SHOW_NOTES])
Write Case Study
Generates a case study showcasing a client's success story and results.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_CASE_STUDY])
Create Chatbot Responses
Generates a set of responses for chatbots based on common customer queries.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CHATBOT_RESPONSES])
Write Product Comparison
Creates a comparison between two or more products highlighting key differences.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_PRODUCT_COMPARISON])
New Document Created
Triggered when a new document is created in Jasper.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DOCUMENT_CREATED])
Content Generated
Fired when new content is generated using any of Jasper's tools.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONTENT_GENERATED])
Project Completed
Triggered when a project in Jasper is marked as completed.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROJECT_COMPLETED])
Template Used
Fired when a specific template is used to generate content.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TEMPLATE_USED])
Word Count Reached
Triggered when a document reaches a specified word count threshold.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WORD_COUNT_REACHED])
Collaboration Invited
Fired when a user is invited to collaborate on a Jasper document.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.COLLABORATION_INVITED])
Content Exported
Triggered when content is exported from Jasper to another format or platform.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONTENT_EXPORTED])
AI Model Updated
Fired when Jasper's AI model is updated, potentially affecting content generation.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AI_MODEL_UPDATED])
Account Upgrade
Triggered when a user upgrades their Jasper account to a higher tier.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACCOUNT_UPGRADE])
API Usage Limit Reached
Fired when the API usage limit for a Jasper account is reached.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.API_USAGE_LIMIT_REACHED])