Add Ollama embedding support and improve prayer system with public/private visibility

- Add Ollama fallback support in vector search with Azure OpenAI as primary
- Enhance prayer system with public/private visibility options and language filtering
- Update OG image to use new biblical-guide-og-image.png
- Improve prayer request management with better categorization
- Remove deprecated ingest_json_pgvector.py script

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-28 19:25:49 +00:00
parent 2d27eae756
commit e4b815cb40
8 changed files with 457 additions and 320 deletions

View File

@@ -50,6 +50,8 @@ export async function GET(request: Request) {
category: true,
author: true,
isAnonymous: true,
isPublic: true,
language: true,
prayerCount: true,
isActive: true,
createdAt: true,
@@ -84,4 +86,4 @@ export async function GET(request: Request) {
{ status: 500 }
);
}
}
}