# Keyword search Projects at AI Tinkerers

> Canonical HTML: https://aitinkerers.org/technologies/keyword-search
> Markdown URL: https://aitinkerers.org/technologies/keyword-search.md
> Technology record last updated: 2026-05-05T12:23:54Z
> Generated: 2026-09-20T16:37:06Z

Keyword search is a retrieval method that matches specific user-input terms against an index to return relevant documents.

Keyword search remains the bedrock of information retrieval by mapping user queries directly to indexed tokens. It relies on algorithms like BM25 and TF-IDF (Term Frequency-Inverse Document Frequency) to score relevance based on how often a term appears in a document relative to the entire corpus. While modern systems often layer semantic or vector-based logic on top, the core utility of keyword search lies in its precision for exact matches (names, error codes, or specific part numbers). By utilizing inverted indices, platforms like Elasticsearch and Solr can scan millions of records in milliseconds, providing a high-speed, predictable baseline for any discovery architecture.

- Official technology site: https://www.elastic.co/guide/en/elasticsearch/reference/current/full-text-queries.html
- Public AI Tinkerers demos and talks: 1
- Result page: 1 of 1

## Recent Public Talks and Demos

### [GPT bots in practice - the S**T that goes wrong](https://seattle.aitinkerers.org/talks/rsvp_-gfdFLVr5do)

We’ve been building Gpt + vectorDB powered chatbots at scale since Feb. eg https://farmer.chat - a WhatsApp bot for Indian farmers, demo’d at the UN with over 40000 messages exchanged.

- Event context: AI Tinkerers Seattle - September Meetup — 2023-09-20 — Seattle
- Public talk page: https://seattle.aitinkerers.org/talks/rsvp_-gfdFLVr5do

## Related Technologies

- [GPT](https://aitinkerers.org/technologies/gpt) ([Markdown](https://aitinkerers.org/technologies/gpt.md)) — 26 public demos
- [Machine Translation](https://aitinkerers.org/technologies/machine-translation) ([Markdown](https://aitinkerers.org/technologies/machine-translation.md)) — 2 public demos
- [Speech Recognition](https://aitinkerers.org/technologies/speech-recognition) ([Markdown](https://aitinkerers.org/technologies/speech-recognition.md)) — 6 public demos
- [Vector database](https://aitinkerers.org/technologies/vector-database) ([Markdown](https://aitinkerers.org/technologies/vector-database.md)) — 13 public demos
