Alternatives
Products that do what Semantic Bible Search using OpenAI's latest embedding model does
Hey HN! My brothers and I have worked on this for the last 2 weeks. We use OpenAI's `text-embedding-ada-002` model to embed queries and a vector database to search for similar verses / blocks of verses. We'd like to see what you think and appreciate any feedback!
- 1AO
Hi, I'm Ben, the co-creator of Embedbase. Embedbase lets you use OpenAI Embeddings and Pinecone seamlessly. For example, you can add Embedbase to your app and pair it with GPT3 to allow people to search using natural language (e.g. How many workouts did I complete last week?), or simply expanding your current search experience beyond full-text search (e.g. looking for "similar" documents in Notion to find other related information) Managing embeddings is uncharted territory, we needed to discover the best practices ourselves. Now we're happy to share our learnings with Embedbase. Shoot if…
2023 · embedbase.xyz
- 2AS
2013 · insightdatascience.com
- 3AL
Hi HN! I am Maria, solo founder of DataQA (https://dataqa.ai/), a tool to search and label documents for various NLP tasks (e.g. entity extraction, entity linking, etc). I have worked as a data scientist and ML engineer for the better part of a decade, and over that time have specialised mainly in applications involving natural language processing (NLP). One of the key questions I have always had at the back of my mind is whether my time was well spent. Whenever I spent more time on feature engineering or trying different models, I always wondered whether I would get better…
2021
- 4

- 5VA
Dear HN Community, I am a long time fan and first-time contributor. I just launched a developer focused semantic search platform and wanted to share it with the community. The idea is simple: upload structured or unstructured documents, select the fields you want to index and tag as metadata, and instantly get a clean search API you can use in your own app. Here is what it currently supports: - Manage your own tenants and projects - Upload .json and .txt files (support for .pdf, .docx, .xlsx, .yml, etc. coming soon) - Expose 3 APIs: search, upload document (embeddings), and delete document -…
2025 · aisearch.vpuna.com
- 6IB
I use AI while reading the Bible and I suspect others do too. It's helpful whether you're struggling with the Elizabethan English, or want added context/want to know what theologians say about a passage. So I thought, why not make the AI come to you? TIA for any feedback!
2025 · scripturia.com
- 7PF
Introducing embeds.ai: an embedding playground to compare how embedding models work on a real world use case (retrieval augmented generation for Wikipedia articles + Elad Gil's High growth handbook) A few weeks ago, Shreyan and I were looking for an embedding model to use for RAG. We eventually came across the MTEB leaderboard, but we struggled to understand the benchmark scores. We wanted a tool to test various embedding models with example queries on real-world datasets. After unsuccessfully looking for such a “playground”, we decided to just build one ourselves! We embedded HuggingFace’s…
2023 · embeds.ai
- 8AE
Hey folks, Elias here. Excited to unveil my latest project. Why I Built This: Traditional keyword search isn't cutting it. I've used LLM-embeddings to provide more nuanced, relevant results. How It Works: LLM-embedding similarity on curated datasets for semantically similar results. No need to iterate over keywords any more. Current Datasets: - YC Companies - Show HN Posts, - Ask HN Posts - ProductHunt Startups - Github Top 200k Repos Use Cases: - Validate a product idea's existence - Check if someone already Asked HN something - Have fun - search random terms and see what pops up Want to…
2023 · payperrun.com
- 9SV
Hi HN, I'm Daniel from Superlinked! We have built an open-source framework that improves vector search relevance and usefulness by combining structured metadata with unstructured data in your embeddings. We included self-hostable API server that sits between your data sources and vector database. Docs: https://docs.superlinked.com/ We're launching our cloud offering soon where you can use Superlinked to orchestrate high-performance retrieval for RAG, Search & Recommendation apps in your own cloud. Looking for feedback and happy to answer questions!
2024 · github.com
- 10IM
When your embedding provider is good, but could be better for your use-case.
2024 · zoplabs.com
- 11RB
I rebuilt Biblos, my semantic Bible search app, to run entirely in your browser. No more server costs. The main challenge was fitting an accurate text embedding model into browsers. Last year's version cost $20 monthly to host. The new version runs free on Vercel and searches 31k Bible verses without sending data to any server. I pre-compute embeddings for all 31,000 Bible verses offline using BGE-large-en-v1.5. Each verse becomes a 1024-dimensional vector stored as JSON, compressed into ZIP files by book. When you visit the site, your browser downloads Transformers.js and the BGE model. The…
Oct 2025 · biblos.app
- 12TI
2015 · temple.io
- 13NL
We built a structured search engine for Twitter called Bird SQL, available at https://www.perplexity.ai/sql. Our search interface uses OpenAI Codex to translate natural language to SQL. Our backend then verifies the SQL, executes it, and displays the results on the web app. This makes large structured datasets like a scrape of Twitter easy for anyone to explore. As background, while working on text-to-SQL as a general problem, we came to believe one of its most powerful applications is as a search tool because: - SQL is hard to write by hand and prone to errors - It allows you…
2022 · perplexity.ai
- 14SQ
Since managing the Large Language Models in production might be challenging, we've made a short demo to present how to use Cohere co.embed API and Qdrant Cloud to create a semantic QA system. This is based on bi-encoder architecture, and can be easily adopted to a different use case, like semantic search in any domain.
2022 · qdrant.tech
- 15SS
We’ve just released SemHash v0.3.0, a major rework of our open-source text pre-processing library. We’ve added two new functionalities: outlier filtering & representative sampling. The core API has been reworked to make sure all of these features can be used together in an intuitive way. Our new features use the existing approximate nearest neighbors index that we already used for semantic deduplication, so they can be ran very quickly after building the index on your dataset. The core package can now be used for: - Semantic Deduplication: Remove semantic duplicates from your dataset. This…
2025 · github.com
- 16ND
This is an AI generated TED talk from a system we built at the TED AI hackathon this weekend. It's built on top of ElevenLabs, SDXL and Wordware (https://wordware.ai/). We also have a custom index of over 2 million arXiv papers and 6 million Wikipedia articles. All open source: https://github.com/ashvardanian/extrapolaTED
2023 · youtube.com
- 17RC
Hey, OpenAI recently released "assistants" - These have RAG built into the API, which means that you can provide up to 10.000 files to the assistant without the overhead of dealing with vector databases, splitting files into chunks and more. They work surprisingly well, so I've built a free simple tool to embed them on websites. It has no dependencies and simply uses fetch to communicate to my backend which proxies openai. In the future I plan to add more widget embedding options (currently only chat is available). Let me know if you have any specific questions about either the tool or…
2024 · rispose.com
- 18CA
We open-sourced catsu, a Python client for embedding APIs. The problem: every embedding provider has a different SDK with different bugs. OpenAI has undocumented token limits. VoyageAI's retry logic was broken until September. Cohere breaks downstream libraries every release. LiteLLM's embedding support is minimal. catsu provides: - One API for 11 providers (OpenAI, Voyage, Cohere, Jina, Mistral, Gemini, etc.) - Bundled database of 50+ models with pricing, dimensions, and benchmark scores - Built-in retry with exponential backoff - Automatic cost tracking per request - Full async support…
Dec 2025 · catsu.dev
- 19SS
I built https://ask.rivestack.io — a semantic search engine over Hacker News posts. Instead of keyword matching, it finds results by meaning, so you can search things like "best way to handle authentication in microservices" and get relevant threads even if they don't contain those exact words. How it works: Indexed HN posts and comments into PostgreSQL with pgvector (HNSW index) Embeddings generated with OpenAI's embedding model Queries run as nearest-neighbor vector searches — typical response under 50ms The whole thing runs on a single Postgres instance, no separate vector DB I…
Feb 2026 · ask.rivestack.io
- 20

Embeddings, Semantic Search & RAG Explained
23d ago · khayyamshah2007.blogspot.com
- 21MM
Hi HN, we're Arnav and Adi, and we're building DataBridge - a multi-modal database built from the ground up with AI use cases in mind. We recently launched support for ColPali-style image embeddings and late-interaction retrieval. We've implemented a hamming distance version of retrieval which helps this approach scale significantly more when compared with the regular late-interaction similarity scoring. These embeddings provide a significantly better retrieval accuracy, with ColQwen achieving around an 89% average score on the ViDoRe benchmark, compared to around 67% for traditional parsing…
2025 · github.com
- 22IB
OpenAI created a gold mine, and over the past year developers worldwide have flocked to it. I also joined the gold rush and successfully uncovered two gold nuggets of my own: Yesicon (https://yesicon.app): A vector icon search engine supporting 8 languages with over 200,000 high-quality icons, the ⌘CV buddy for developers and designers SearchEmoji (https://searchemoji.app): An emoji search engine supporting 30 languages, enriching articles and social texts with colorful emojis As a front-end developer, I use many icons in my daily work. Iconify largely solved my icon…
2023
- 23IM
AI search results are quickly becoming more important than SEO, but as businesses, we have no visibility over it! That's why I'm building "Ahrefs for AI search results". Track keyword performance on AI tools like ChatGPT, Claude, Perplexity & more
2025 · linrush.com
- 24AH
2021 · askhadith.com
Ranked by how close each launch is in meaning, then by votes. Refine with a description →