🌐 Cloud-Native Architecture: - Firebase Functions deployment (no Docker) - Supabase database (replacing local PostgreSQL) - Google Cloud Storage integration - Document AI + Agentic RAG processing pipeline - Claude-3.5-Sonnet LLM integration ✅ Full BPCP CIM Review Template (7 sections): - Deal Overview - Business Description - Market & Industry Analysis - Financial Summary (with historical financials table) - Management Team Overview - Preliminary Investment Thesis - Key Questions & Next Steps 🔧 Cloud Migration Improvements: - PostgreSQL → Supabase migration complete - Local storage → Google Cloud Storage - Docker deployment → Firebase Functions - Schema mapping fixes (camelCase/snake_case) - Enhanced error handling and logging - Vector database with fallback mechanisms 📄 Complete End-to-End Cloud Workflow: 1. Upload PDF → Document AI extraction 2. Agentic RAG processing → Structured CIM data 3. Store in Supabase → Vector embeddings 4. Auto-generate PDF → Full BPCP template 5. Download complete CIM review 🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
71 lines
2.3 KiB
JavaScript
71 lines
2.3 KiB
JavaScript
const { createClient } = require('@supabase/supabase-js');
|
|
|
|
// Load environment variables
|
|
require('dotenv').config();
|
|
|
|
const supabaseUrl = process.env.SUPABASE_URL;
|
|
const supabaseServiceKey = process.env.SUPABASE_SERVICE_KEY;
|
|
|
|
const supabase = createClient(supabaseUrl, supabaseServiceKey);
|
|
|
|
async function createRPCFunction() {
|
|
console.log('🚀 Creating match_document_chunks RPC function in Supabase...');
|
|
|
|
// The SQL to create the vector search function
|
|
const createFunctionSQL = `
|
|
CREATE OR REPLACE FUNCTION match_document_chunks(
|
|
query_embedding VECTOR(1536),
|
|
match_threshold FLOAT DEFAULT 0.7,
|
|
match_count INTEGER DEFAULT 10
|
|
)
|
|
RETURNS TABLE (
|
|
id UUID,
|
|
document_id TEXT,
|
|
content TEXT,
|
|
metadata JSONB,
|
|
chunk_index INTEGER,
|
|
similarity FLOAT
|
|
)
|
|
LANGUAGE SQL STABLE
|
|
AS $$
|
|
SELECT
|
|
document_chunks.id,
|
|
document_chunks.document_id,
|
|
document_chunks.content,
|
|
document_chunks.metadata,
|
|
document_chunks.chunk_index,
|
|
1 - (document_chunks.embedding <=> query_embedding) AS similarity
|
|
FROM document_chunks
|
|
WHERE document_chunks.embedding IS NOT NULL
|
|
AND 1 - (document_chunks.embedding <=> query_embedding) > match_threshold
|
|
ORDER BY document_chunks.embedding <=> query_embedding
|
|
LIMIT match_count;
|
|
$$;
|
|
`;
|
|
|
|
// Try to execute via a simple query since we can't use rpc to create rpc
|
|
console.log('📝 Function SQL prepared');
|
|
console.log('');
|
|
console.log('🛠️ Please run this SQL in the Supabase SQL Editor:');
|
|
console.log('1. Go to https://supabase.com/dashboard/project/gzoclmbqmgmpuhufbnhy/sql');
|
|
console.log('2. Paste and run the following SQL:');
|
|
console.log('');
|
|
console.log('-- Enable pgvector extension (if not already enabled)');
|
|
console.log('CREATE EXTENSION IF NOT EXISTS vector;');
|
|
console.log('');
|
|
console.log(createFunctionSQL);
|
|
console.log('');
|
|
console.log('-- Test the function');
|
|
console.log('SELECT match_document_chunks(');
|
|
console.log(" ARRAY[" + new Array(1536).fill('0.1').join(',') + "]::vector,");
|
|
console.log(' 0.5,');
|
|
console.log(' 5');
|
|
console.log(');');
|
|
|
|
// Let's try to test if the function exists after creation
|
|
console.log('');
|
|
console.log('🧪 After running the SQL, test with:');
|
|
console.log('node test-vector-search.js');
|
|
}
|
|
|
|
createRPCFunction(); |