Skip to content

Quick Start

Get up and running with WaiNao in just a few minutes.

Step 1: Create an Account

Sign up for a free account at WaiNao.AI.

Step 2: Create Your First Project

  1. Click the New Project button
  2. Give your project a name
  3. Choose a template or start from scratch

Step 3: Add Your First Block

Drag a Generation block onto the canvas. This block uses AI to generate text based on your prompt.

typescript
// Example: Using a Generation block
const result = await generation({
  prompt: "Write a hello world message",
  model: "gpt-4"
});

Step 4: Run Your Workflow

Click the Run button to execute your workflow. You'll see the results in real-time.

Next Steps