feat: implement AI chat with vector search and random loading messages

Major Features:
-  AI chat with Azure OpenAI GPT-4o integration
-  Vector search across Bible versions (ASV English, RVA 1909 Spanish)
-  Multi-language support with automatic English fallback
-  Bible version citations in responses [ASV] [RVA 1909]
-  Random Bible-themed loading messages (5 variants)
-  Safe build script with memory guardrails
-  8GB swap memory for build safety
-  Stripe donation integration (multiple payment methods)

AI Chat Improvements:
- Implement vector search with 1536-dim embeddings (Azure text-embedding-ada-002)
- Search all Bible versions in user's language, fallback to English
- Cite Bible versions properly in AI responses
- Add 5 random loading messages: "Searching the Scriptures...", etc.
- Fix Ollama conflict (disabled to use Azure OpenAI exclusively)
- Optimize hybrid search queries for actual table schema

Build & Infrastructure:
- Create safe-build.sh script with memory monitoring (prevents server crashes)
- Add 8GB swap memory for emergency relief
- Document build process in BUILD_GUIDE.md
- Set Node.js memory limits (4GB max during builds)

Database:
- Clean up 115 old vector tables with wrong dimensions
- Keep only 2 tables with correct 1536-dim embeddings
- Add Stripe schema for donations and subscriptions

Documentation:
- AI_CHAT_FINAL_STATUS.md - Complete implementation status
- AI_CHAT_IMPLEMENTATION_COMPLETE.md - Technical details
- BUILD_GUIDE.md - Safe building guide with guardrails
- CHAT_LOADING_MESSAGES.md - Loading messages implementation
- STRIPE_IMPLEMENTATION_COMPLETE.md - Stripe integration docs
- STRIPE_SETUP_GUIDE.md - Stripe configuration guide

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-12 19:37:24 +00:00
parent b3ec31a265
commit a01377b21a
20 changed files with 3022 additions and 130 deletions

View File

@@ -194,9 +194,27 @@ async function generateBiblicalResponse(message: string, locale: string, history
// Continue without verses - test if Azure OpenAI works alone
}
// Create context from relevant verses
// Extract Bible version names from source_table
const getVersionName = (sourceTable: string): string => {
if (!sourceTable) return 'Unknown'
// Extract table name: ai_bible."bv_en_eng_asv" -> bv_en_eng_asv
const tableName = sourceTable.split('.').pop()?.replace(/"/g, '') || ''
// Map table names to friendly version names
const versionMap: Record<string, string> = {
'bv_en_eng_asv': 'ASV (American Standard Version)',
'bv_es_sparv1909': 'RVA 1909 (Reina-Valera Antigua)',
// Add more as needed
}
return versionMap[tableName] || tableName
}
// Create context from relevant verses with version citations
const versesContext = relevantVerses
.map(verse => `${verse.ref}: "${verse.text_raw}"`)
.map(verse => {
const version = getVersionName(verse.source_table)
return `[${version}] ${verse.ref}: "${verse.text_raw}"`
})
.join('\n\n')
// Intelligent context selection for conversation history
@@ -204,39 +222,62 @@ async function generateBiblicalResponse(message: string, locale: string, history
// Create language-specific system prompts
const systemPrompts = {
ro: `Ești un asistent AI pentru întrebări biblice în limba română. Răspunde pe baza Scripturii, fiind respectuos și înțelept.
ro: `Ești un asistent AI biblic expert în limba română. Răspunde pe baza Scripturii, fiind precis și empatic.
Instrucțiuni:
- Folosește versurile biblice relevante pentru a răspunde la întrebare
- Citează întotdeauna referințele biblice (ex: Ioan 3:16)
- Răspunde în română
- Fii empatic și încurajator
- Dacă nu ești sigur, încurajează studiul personal și rugăciunea
INSTRUCȚIUNI IMPORTANTE:
- CITEAZĂ ÎNTOTDEAUNA versiunea biblică folosind formatul [Versiune] Referință
Exemplu: "[ASV] Ioan 3:16" sau "[RVA 1909] Juan 3:16"
- Folosește versurile biblice furnizate mai jos pentru a răspunde
- Răspunde ÎNTOTDEAUNA în română, chiar dacă versetele sunt în alte limbi
- Dacă folosești versuri în engleză sau alte limbi, explică-le în română
- Fii respectuos, înțelept și încurajator
- Dacă întrebarea nu are răspuns clar în Scriptură, menționează-l cu onestitate
Versuri relevante pentru această întrebare:
${versesContext}
Versuri biblice relevante găsite:
${versesContext || 'Nu s-au găsit versete specifice. Răspunde pe baza cunoștințelor biblice generale.'}
Conversația anterioară:
${conversationHistory}
Întrebarea curentă: ${message}`,
en: `You are an AI assistant for biblical questions in English. Answer based on Scripture, being respectful and wise.
en: `You are an expert Biblical AI assistant in English. Answer based on Scripture, being precise and empathetic.
Instructions:
- Use the relevant Bible verses to answer the question
- Always cite biblical references (e.g., John 3:16)
- Respond in English
- Be empathetic and encouraging
- If unsure, encourage personal study and prayer
IMPORTANT INSTRUCTIONS:
- ALWAYS cite the Bible version using the format [Version] Reference
Example: "[ASV] John 3:16" or "[RVA 1909] Juan 3:16"
- Use the Bible verses provided below to answer the question
- ALWAYS respond in English
- Be respectful, wise, and encouraging
- If the question doesn't have a clear answer in Scripture, state that honestly
- When multiple versions are available, cite the most relevant ones
Relevant verses for this question:
${versesContext}
Relevant Bible verses found:
${versesContext || 'No specific verses found. Answer based on general biblical knowledge.'}
Previous conversation:
${conversationHistory}
Current question: ${message}`
Current question: ${message}`,
es: `Eres un asistente bíblico experto en español. Responde basándote en las Escrituras, siendo preciso y empático.
INSTRUCCIONES IMPORTANTES:
- SIEMPRE cita la versión bíblica usando el formato [Versión] Referencia
Ejemplo: "[RVA 1909] Juan 3:16" o "[ASV] John 3:16"
- Usa los versículos bíblicos proporcionados abajo para responder
- SIEMPRE responde en español, incluso si los versículos están en otros idiomas
- Si usas versículos en inglés u otros idiomas, explícalos en español
- Sé respetuoso, sabio y alentador
- Si la pregunta no tiene respuesta clara en las Escrituras, mencio nalo honestamente
Versículos bíblicos relevantes encontrados:
${versesContext || 'No se encontraron versículos específicos. Responde basándote en conocimiento bíblico general.'}
Conversación anterior:
${conversationHistory}
Pregunta actual: ${message}`
}
const systemPrompt = systemPrompts[locale as keyof typeof systemPrompts] || systemPrompts.en