Quick Actions

Learn about Zonia's pre-built actions for common tasks

Available Quick Actions

📝

Summarize Text

Quickly condense long content into key points

Example: "Summarize this article: [paste your text]"
📋

Make a Plan

Create structured plans for your projects

Example: "Create a plan for launching a website"
🎲

Brainstorm

Generate creative ideas and solutions

Example: "Brainstorm content ideas for my blog"
✍️

Writing Help

Get assistance with any writing task

Example: "Help me write a professional email"

Using Quick Actions

Example Usage

1. Click the Action

Select any quick action from the homepage or chat interface

2. Provide Details

Add specific information or context for better results

3. Refine Results

Use follow-up messages to adjust or improve the output

Code Examples

// Using Quick Actions via API
const zonia = new ZoniaAPI();

// Example 1: Summarize Text
const summary = await zonia.quickAction({
	type: 'summarize',
	content: 'Your long text here...',
	options: {
		length: 'medium',
		format: 'bullet-points'
	}
});

// Example 2: Create a Plan
const plan = await zonia.quickAction({
	type: 'plan',
	goal: 'Launch a marketing campaign',
	options: {
		timeframe: '3 months',
		detailed: true
	}
});

// Example 3: Brainstorm Ideas
const ideas = await zonia.quickAction({
	type: 'brainstorm',
	topic: 'Blog post topics',
	options: {
		count: 10,
		category: 'technology'
	}
});