microchipJET AI Engine

The AI Engine is the intelligence behind JET—it's what transforms your natural language into working code, intelligent layouts, and functional backends. Understanding how it works will help you craft better prompts and predict results.

What the AI Engine Handles

JET's AI Composer manages every aspect of web development:

  • Layout & Structure: Section arrangement, component nesting, responsive grids

  • Content & Copy: Text generation, tone matching, content hierarchy

  • Styling & Design: Colors, typography, spacing, animations, themes

  • Functionality: Form validation, database connections, API integrations

  • Routing: Multi-page navigation, URL structure, redirects

  • Backend Logic: Database schemas, CRUD operations, authentication

You describe the what, JET handles the how.

How Prompts Are Interpreted

When you send a prompt, the AI Engine follows a four-stage process:

1. Intent Detection The engine identifies what you're asking for:

  • Creation: "Add a pricing section"

  • Modification: "Make the hero darker"

  • Deletion: "Remove the testimonials"

  • Query: "What components are available for team sections?"

2. Slot Filling The engine extracts specific requirements from your prompt:

  • Assets: Images, logos, icons needed

  • CTAs: Button text and actions

  • Constraints: Colors, fonts, sizing

  • Content: Headlines, descriptions, data

3. Template Selection Based on your intent, the engine either:

  • Selects a matching pre-built component

  • Generates custom code from scratch

  • Combines multiple components

  • Modifies existing elements

4. Code Generation & Integration The engine produces:

  • HTML structure (semantic and accessible)

  • CSS styling (responsive and optimized)

  • JavaScript interactivity (when needed)

  • Backend APIs and database schemas

  • Deployment configuration

Example: Parsed Output

When you say:

"Add a features section with three cards highlighting speed, security, and support. Use icons and keep it minimal."

The engine parses this into:

json

Debugging & Change History

View Recent Changes: Click "Version History" to see a timeline of all modifications with before/after comparisons.

Revert Specific Changes: Don't like the last update? Click "Undo" or select a previous snapshot to revert.

Inspect Generated Code: Advanced users can view the actual HTML/CSS/JS by clicking "View Code" in the inspector panel.

Understanding Errors: If JET can't complete your request, it will explain why and suggest alternatives:

  • "I couldn't find an image at that URL. Can you upload the image directly?"

  • "That color value isn't valid. Try using hex format like #FF5733"

Getting Better Results

The more you use JET, the better it understands your preferences. The AI learns:

  • Your design style (colors, layouts, typography)

  • Common component patterns you use

  • Your content tone and voice

  • Typical site structures you build

This means your 10th website will build faster than your first, with fewer clarifying questions.

Pro Tip: If you're building multiple similar sites (like client landing pages), create a "Style Guide" prompt and reuse it:

"Use my brand style: Primary color #3498db, secondary #2ecc71, fonts are Poppins for headings and Inter for body. Keep layouts clean and minimal with lots of whitespace. Always include a sticky header and footer with social links."

Save this as a template and start each new project with it.

Last updated