Set instructions that apply to every conversation — like a permanent system prompt.
Choose where to deploy or share your app:
Open an image to start editing
Stored facts injected into every conversation. DaveAI will remember and use these automatically.
Group conversations into projects with custom instructions.
Save, organize, and reuse your best prompts. Click a prompt to send it.
Upload PDFs, text files, or paste content. DaveAI will chunk, index, and answer questions from your documents.
Give DaveAI a research goal. It will autonomously plan, search multiple angles, synthesize findings, and produce a comprehensive report.
Connect Supabase to save all your chats, memories, and settings to the cloud. Works across devices. Get a free account at supabase.com
Run this SQL in your Supabase SQL Editor to create the required tables:
-- Run this in Supabase SQL Editor -- Table: conversations create table if not exists daveai_conversations ( id text primary key, user_id text default 'default', title text, messages jsonb default '[]', created_at timestamptz default now(), updated_at timestamptz default now() ); -- Table: memories create table if not exists daveai_memories ( id serial primary key, user_id text default 'default', content text, created_at timestamptz default now() ); -- Table: settings create table if not exists daveai_settings ( user_id text primary key default 'default', data jsonb, updated_at timestamptz default now() ); -- Enable Row Level Security (optional but recommended) alter table daveai_conversations enable row level security; alter table daveai_memories enable row level security; alter table daveai_settings enable row level security; -- Allow all operations (simple setup — add auth policies later) create policy "Allow all" on daveai_conversations for all using (true) with check (true); create policy "Allow all" on daveai_memories for all using (true) with check (true); create policy "Allow all" on daveai_settings for all using (true) with check (true);
Start from a template — AI will customize it to your needs.
Paste a video link and click Generate Video, or add scenes manually.