Node Details

Select a node to see its details.

Google AI API Key Required

To use the AI Assistant features, please enter your Google AI API key. You can get a key from Google AI Studio.

Setup Cloud Storage (Supabase)

To enable cloud saving and auto-sync, you need a free Supabase account. Follow these steps:

  1. Go to Supabase and create a new project.
  2. Go to the 'SQL Editor' section, click '+ New query', and run the following SQL to create the table:
    create table public.rai_structure_playground (
      key text not null,
      slot text not null,
      value jsonb null,
      updated_at timestamptz not null default now(),
      constraint rai_structure_playground_pkey primary key (key, slot)
    );
  3. Go to 'Project Settings' > 'API'. Copy the 'Project URL' and the 'public' 'anon' key from the 'Project API keys' section.
  4. Paste the values below. This information is only stored for your current browser session.