Alternatives
Products that do what Conversational search in less than 500 lines of Python does
Hi there! We built a Bing-chat-like conversational search engine with less than 500 lines of python code (and a similar amount of frontend script). The source code is fully open-source at https://github.com/leptonai/search_with_lepton , and we put up a live demo at https://search.lepton.run/. Let us know what you think!
- 1

- 2

- 3SB
2015 · spacy.io
- 4LP
I was not getting good cache utilization when including dynamic context in agent threads. After a lot of experimentation, I found a good pattern that minimizes how often long lived conversation history gets modified while still supporting dynamic context. It has flexible hooks for doing things like truncating or summarizing tool outputs when transitioning messages to the long term history. And I'm seeing >>90% of tokens hitting the cache for my agents despite including a lot of dynamic user context. There are a wide range of agent prompting strategies so I'd love to hear where this library…
Jun 2026 · github.com
- 5PC
2019 · github.com
- 6LS
I kept running into this annoying problem: I’d remember a really useful answer, but not where it was. ChatGPT? Claude? Gemini? No idea. So I’d end up digging through all of them or just rewriting the prompt. Built this to fix that. It’s a Chrome extension that indexes chats locally and lets you search across them all in one place. Once it’s indexed, search is basically instant. Still early. UIs change and break things sometimes, so it’s a bit fragile in places. Curious if other people have the same issue or if it’s just me jumping between tools too much.
Apr 2026 · chromewebstore.google.com
- 7UI
Hey everyone! I am excited to share updates on four of my & my teams' open-source projects that take large-scale search systems to the next level: USearch, UForm, UCall, and StringZilla. These projects are designed to work seamlessly together, end-to-end—covering everything from indexing and AI to storage and networking. And yeah, they're optimized for x86 AVX2/512 and Arm NEON/SVE hardware. USearch [1]: Think of it as Meta FAISS on steroids. It's now quicker, supports clustering of any granularity, and offers multi-index lookups. Plus, it's got more native bindings than probably…
2023 · usearch-images.com
- 8SF
Hey HN! We've just open-sourced Semble, a fast and accurate code search library built for agents. We're also releasing potion-code-16M, a small code-specialized static embedding model that powers it. Most embedding-based code search methods are either too slow to index on demand or need GPU infrastructure, while grep-style retrieval methods often cannot find the relevant content. Semble combines the speed and quality benefits of both, so agents waste less time and fewer tokens exploring. Main features: - Fast: indexes a full codebase in ~250 ms and answers queries in ~1.5 ms, all on CPU…
Apr 2026 · github.com
- 9CC
2016 · dailypy.com
- 10CH
Hey HN, As a heavy ChatGPT user, I often want to explore my chat history, look for things I've already asked, keep favorite chats, and much more. ChatGPT doesn't even offer search capability (except in mobile version). So I decided to build one myself. It runs locally, so no sensitive data leaks. You only need to export your ChatGPT conversations, and put it in the `data` folder. Optionally setup OpenAI API key and it will create embeddings for semantic search. *Important* - it's not a desktop app (at least, not yet) - it's a python code with a browser interface that I've only tested on…
2023 · github.com
- 11AO
Hey HN, My workflow for any complex queries is to ask it in multiple AI chats (Gemini, Claude, o3,..) in parallel and then continue the conversation with the chat response that I found the most useful. I built a simple open source app that queries 10+ AI models at once and summarizes their answers with a selected combiner AI model. There's a GIF in the github repo that shows it in action. You can try it on your local machine: https://github.com/Nexarithm/multi_model_chat If you are interested, I also made a detailed blog post on technical details, feature of the personal…
2025 · github.com
- 12CA
Just finished the first draft of my weekend project. Sadly my industry is far away from all the exciting machine learning developments happening right now, so I wrote this project as my first exploration into the world of LLMs. It's not perfect, but I'm excited to see where the project goes from here! https://github.com/clarkmcc/chitchat My main motivations were: - Easy-of-use: Many models are supported out-of-the-box so users don't have to figure out how to download, where to save, etc. - Intuitive: A clean interface - Cross platform: The project is written in Rust and…
2023 · clarkmccauley.com
- 13IM
I built this using semantic search and the ChatGPT API, which was just released the other day. What makes it special is it not only understands the code you're debugging, but also pulls in additional context like relevant documentation to help answer your questions and suggest code changes. Ultimately, my goal is to take the hassle out of pasting error messages into Google, finding a vaguely related StackOverflow post, and manually integrating the solution into your code.
2023 · useadrenaline.com
- 14IM
heylo! open sourcing a plugin that I've been daily driving for a month. And I promise, I can't go back to vanilla Claude Code. I'm a heavy Claude Code user, and a couple of things kept bugging me. Claude really likes to jump into code. And its responses are too long. I'd skim past walls of text just to find the recommendation. Plan mode helps, but it didn't go deep enough. The questions it asked were still implementation questions, when what I actually needed was alignment on the problem. So I made it stop. Relay is a different output style and two Python hooks. When you describe what you…
Apr 2026 · github.com
- 15PA
Hey HN, we’re the team at Morph Labs and we’re excited to release Phorm (https://phorm.ai), a fast, simple, and SOTA codebase answer engine. You can search over up to 8 repositories in almost any language, and Phorm can comfortably handle repositories up to ~200K LOC each. It is free during our initial research preview. Phorm’s Advanced Indexing combines synthetic data with static analysis of the code graph to improve the relevancy of search results by up to 3X. We’re proud to launch with featured Advanced Indexing support for a select group of leading open-source projects: - Nomic…
2024 · phorm.ai
- 16GA
hi hn, today I'm open sourcing a new SQL-like query language that's built for the web. it has dedicated syntax for request, parsers, selectors, and javascript snippets... it was built on nodejs with the incredible moo lexer and nearley parser. if you're a fan of regular expressions, do I have some code to show you! the website is mostly just a few examples and a playground where you can write & run (& share!) your own queries. there's also an introductory blog post where i try but ultimately fail to justify why this should be its own language and not a library/framework. enjoy!
2024 · getlang.dev
- 17CT
I had been looking to try <500M parameter language models but you wouldn't find an API to try them anywhere, so I built this cloudflare hosted static website that hosts weights and built an inference runtime for these models that uses WebGPU and runs inference from your browser. These are only so useful in a multi-turn conversation but it's still interesting to see what you can pack in a <250mb model. I tried using ONNX versions earlier, but there were too many quirks of using them with language models and the TPS wasn't too impressive. Inspired by svenflow/webgpu-gemma, I put my codex…
May 2026 · chonklm.com
- 18AS
Hey HN, Since the launch of GPTs, I’ve struggled with integrating vast, up-to-date knowledge into a custom GPT and embedding it into websites and apps. After months of trial and error, we’ve developed an AI Search & Knowledge Assistant that solves this problem. Over the weekend, I built a demo assistant for Stripe that provides accurate answers, useful links, images in responses, cites sources, and keeps a thread history of your conversations. Here’s what’s included: - 3,700+ public documents full of useful info - 105+ million characters of rich knowledge - Powered by the ChatGPT-4o model…
2024 · demo.ordemio.com
- 19GS
This weekend I finally shipped Gryt, a project I’ve been building since 2022 — an open-source, self-hostable Discord-style app focused on reliable voice chat + text. I’m the creator. I started it after getting fed up with Discord disconnects/paywalls and wanted something self-hosted and auditable. I started on this in 2022 and had an early proof-of-concept working back then (auth + friends list), but I quickly realized WebRTC voice isn’t something you can duct-tape together. I spent a big chunk of the next couple years learning the stack (ICE/DTLS-SRTP, NAT traversal, SFU design),…
Feb 2026 · gryt.chat
- 20NA
A new open source React / JS library that makes it super simple to create conversational AI interfaces, using ChatGPT or any other LLM
2024 · nlux.ai
- 21CS
2022 · friday.education
- 22HM
I made this as a pair programming exercise with o1-preview. o1 did most of the heavy lifting, through high level prompts, but eventually I needed to diverge from it to get to completion. My initial prompt was: --- I'm making a web app: It's like 4chan, but each thread starts with a gps coordinate. People can only post text and images. I want to build it with flask and sqlalchemy. I want just the backend and data model that supports these threads, anonymous users, and users that can register a permanent username. Write as much of it as you can for me. --- This produced a fully scaffolded…
2024 · mapchan.com
- 23IP
2019 · gist.github.com
- 24PN
2020 · orkohunter.net
Ranked by how close each launch is in meaning, then by votes. Refine with a description →