For ReadMe
Ask AI for your ReadMe docs
Add a page-search widget with Ask AI and a separate chatbot to ReadMe. Readers can find guides and API pages or request a source-linked answer. Business and Enterprise plans only.
14-day freeSelf-serveLive in 15 min
Biel.ai chatbot
Powered by biel.ai
Assistant
Hi! how can I help you?
Suggested questions
enable dark mode
Assistant
To enable dark mode for Biel.ai on your website, follow these steps:
- Modify your website’s main HTML file.
- Add the attribute
data-theme="dark"to the<html>tag.
html
<html data-theme="dark">
<!-- Your existing HTML content -->
</html>This change activates the dark mode styling for Biel.ai…
AI-generated answers may contain errors. Verify official sources before use.
100,000+ technical questions answered, 98.7% rated helpful
Install
Three ways to ship Biel on ReadMe
A floating Ask AI chatbot via Custom JavaScript, a page-search field with an Ask AI handoff next to ReadMe search, or a hosted MCP endpoint Claude and Cursor can query directly.
Full installation guideInject via ReadMe Custom JavaScript
ReadMe Business and Enterprise plans expose a Custom JavaScript field in Settings → Appearance. Paste the Biel snippet there and the Ask AI button appears on every page in your ReadMe project: guides, reference, changelog, all of them.
- →Floating Ask AI button on every page
- →Indexes API reference, guides, and changelog
- →Per-project install: scope by ReadMe project
- →Compatible with all ReadMe themes
ReadMe Custom JavaScript
// Settings → Appearance → Custom JavaScript & CSS
(function() {
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'https://cdn.jsdelivr.net/npm/biel-search/dist/biel-search/biel-search.css';
document.head.appendChild(link);
var script = document.createElement('script');
script.type = 'module';
script.src = 'https://cdn.jsdelivr.net/npm/biel-search/dist/biel-search/biel-search.esm.js';
script.onload = function() {
var btn = document.createElement('biel-button');
btn.setAttribute('project', '<YOUR_PROJECT_ID>');
btn.setAttribute('header-title', 'Documentation AI');
btn.setAttribute('button-position', 'bottom-right');
btn.setAttribute('button-style', 'dark');
btn.textContent = 'Ask AI';
document.body.appendChild(btn);
};
document.head.appendChild(script);
})();Biel.ai vs ReadMe built-in search
ReadMe's search is solid for keyword lookup against API reference and guides. Biel adds its own page-search widget plus an Ask AI handoff to the chatbot. Many ReadMe sites run both.
| Dimension | ReadMe search | Biel.ai |
|---|---|---|
| Query type | Keyword and title matching across guides and reference. Returns a list of pages. | Keyword page results, with Ask AI for natural-language questions and source-linked answers. |
| API reference handling | ReadMe's strength. Search indexes endpoint titles and parameter names well. | Reads endpoint descriptions, parameter docs, and request/response shapes as documentation. Cites specific endpoints. |
| Changelog and guides | All indexed in one keyword search. No question-shape awareness. | Same content, indexed for natural-language questions. Citations preserve which section the answer came from. |
| Multi-version docs | ReadMe supports versioned projects. Each version has its own search index. | Per-version indexes. Scope answers to the user's current version automatically. |
| Languages | Single-language search per ReadMe project. | Answers in 60+ languages, including languages your docs are not written in. |
| Analytics | ReadMe analytics tracks page views and search queries. | Plus unanswered questions, satisfaction trends, and a Content Gaps view that updates daily. |
| Install | Built into ReadMe. No install required. | One Custom JavaScript field. Live in 15 minutes. |
| Cost | Included with ReadMe. | Self-serve. 14-day free trial, no credit card required. |
Things teams ask during evaluation
Which ReadMe plans does it work with?
Custom JavaScript is a Business and Enterprise plan feature on ReadMe. The widget install requires it. Free and Startup plans can use Biel by hosting their docs site separately and indexing the public ReadMe URL.
Does it understand our API reference?
Yes. Endpoint pages, parameter docs, request and response shapes are indexed as documentation. Citations resolve to the right endpoint anchor, so readers see exactly which endpoint the answer came from.
Will it work with versioned projects?
Yes. Each version your ReadMe project publishes is indexed as its own source. Readers on /v1.0/ do not get answers from /v2.0/.
Can it index our changelog?
Yes. ReadMe Changelog entries are indexed alongside guides and reference. Useful when readers ask "what changed in the latest release?".
Can we keep ReadMe's built-in search?
Yes. Keep ReadMe search, add Biel's page-search widget alongside it, or use only the Biel chatbot. Ask AI can carry a Biel search query into the chatbot.
How long does the install take?
Add the widget to ReadMe’s Custom JavaScript field. Indexing time depends on the size of the project.
Make your ReadMe docs answer questions
14-day free trial · No credit card required
Use a different platform? See our integration pages for Paligo, Document360, Docusaurus, MkDocs, and Sphinx.