Quick Start Guide

Get up and running with Zonia in minutes

1. Understanding Zonia

Zonia is your AI companion that helps with various tasks through natural conversation. Think of it as having a knowledgeable assistant ready to help 24/7.

2. Starting Your First Chat

  1. Navigate to the main chat interface
  2. Type your message in the input box or select a quick action
  3. Press Enter or click the send button
  4. Wait for Zonia's response

Pro tip: Use clear, specific language for better results

3. Quick Actions

📝 Summarize Text

Quickly condense long content into key points

📋 Make a Plan

Create structured plans for your projects

🎲 Brainstorm

Generate creative ideas and solutions

✍️ Writing Help

Get assistance with any writing task

4. Best Practices

Be Specific

Instead of "Help me write", try "Help me write a professional email to schedule a meeting"

Provide Context

Include relevant details that will help Zonia understand your needs better

Use Follow-ups

Don't hesitate to ask follow-up questions to refine the responses

Code Examples

Text Summarization Example

// Example text summarization request
const text = "Your long text here...";
zonia.summarize(text, {
  maxLength: 100,
  format: 'bullet-points'
});

// Response from Zonia
{
  summary: [
    "Key point 1: Main idea from the text",
    "Key point 2: Another important concept",
    "Key point 3: Final crucial detail"
  ],
  wordCount: 45
}

Planning Assistant Example

// Creating a project plan
const projectDetails = {
  title: "Website Redesign",
  deadline: "2 weeks",
  requirements: ["Modern UI", "Mobile Responsive"]
};

zonia.createPlan(projectDetails);

// Zonia's response
{
  phases: [
    {
      name: "Research & Planning",
      tasks: ["Analyze current website", "Define goals"],
      duration: "2 days"
    },
    {
      name: "Design",
      tasks: ["Create wireframes", "Design UI components"],
      duration: "5 days"
    },
    {
      name: "Development",
      tasks: ["Build responsive layout", "Implement features"],
      duration: "5 days"
    }
  ]
}

Writing Assistant Example

// Requesting writing help
const emailRequest = {
  type: "email",
  purpose: "Meeting invitation",
  tone: "professional",
  details: {
    meeting: "Project Review",
    date: "Next Tuesday",
    time: "2 PM"
  }
};

zonia.writeEmail(emailRequest);

// Zonia's response
{
  subject: "Project Review Meeting - Next Tuesday at 2 PM",
  body: `Dear [Name],

I hope this email finds you well. I would like to invite you to a project review meeting scheduled for next Tuesday at 2 PM.

During this meeting, we will discuss our progress and next steps.

Please confirm your availability.

Best regards,
[Your name]`
}

Note about Code Examples

These examples demonstrate the structure of requests and responses when using Zonia's API. In the chat interface, you can achieve the same results using natural language.

Next Steps