Approve tool use

This commit is contained in:
gpt-engineer-app[bot]
2025-10-10 22:41:12 +00:00
parent 303a338a99
commit 15babfa801
6 changed files with 649 additions and 132 deletions

6
src/lib/supabase.ts Normal file
View File

@@ -0,0 +1,6 @@
import { createClient } from '@supabase/supabase-js';
const supabaseUrl = import.meta.env.VITE_SUPABASE_URL || '';
const supabaseAnonKey = import.meta.env.VITE_SUPABASE_ANON_KEY || '';
export const supabase = createClient(supabaseUrl, supabaseAnonKey);