TutorialGetting StartedWorkflows

Building Your First AI Workflow with Noukai

A step-by-step guide to creating powerful AI systems without writing code

Sarah Chen
Sarah Chen
Developer Relations
August 20, 20245 min read
Building Your First AI Workflow with Noukai

Getting started with AI development has never been easier. With Noukai's no-code platform, you can build sophisticated AI systems using our intuitive visual builder, without writing a single line of code.

Setting Up Your First Project

When you first log into Noukai, you'll be greeted with a clean workspace. Click 'New Project' to begin your AI workflow journey. Every project can contain multiple routes (API endpoints) that define how your AI system responds to different inputs.

Designing Your Workflow

The visual builder is where the magic happens. Drag components from the sidebar and connect them to create your AI processing pipeline:

javascript
// Example API call to your published workflow
const response = await fetch('https://api.noukai.com/workflow/your-endpoint', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    input: 'Your text to process',
    options: { temperature: 0.7 }
  })
});

const result = await response.json();
console.log(result.output);

Testing and Publishing

Before publishing your workflow, use our built-in testing tools to ensure everything works as expected. Once you're satisfied with the results, simply click 'Publish' to make your AI system available via API.

Your published workflow will have its own unique endpoint and can be integrated into any application. Monitor usage, track performance, and iterate on your design all from within the Noukai dashboard.