A MkDocs plugin to add a Gemini-powered chatbot to your documentation site.
Project description
MkDocs Gemini Chatbot Plugin
An MkDocs plugin that adds a conversational chatbot to your documentation site, powered by Google's Gemini models. The chatbot uses the entire content of your documentation, including auto-generated API references, to provide intelligent, context-aware answers with precise, clickable links to the relevant sections.
- Conversational AI: Uses Google's Gemini models to understand and answer user questions.
- Full-Site Context: Indexes the content of your entire MkDocs site, including pages generated by other plugins like
mkdocstrings. - Precision Linking: Automatically creates clickable links to the exact section or page being referenced in its answers.
- Responsive Design: A clean, modern UI that works beautifully on both desktop and mobile, with a fullscreen mode for immersive conversations.
- Light & Dark Mode: Automatically adapts its theme to your MkDocs Material theme's color palette.
- Code-Friendly: Renders Markdown responses, with syntax highlighting and a "Copy" button for code blocks.
- Persistent History: Remembers your conversation history within a browser session.
- Secure API Key Handling: Loads your Gemini API key securely from a
.envfile, so you never have to commit it to your repository.
Installation
-
Install the plugin from PyPI:
pip install mkdocs-gemini-chatbot
-
Get a Gemini API Key:
- Go to Google AI Studio.
- Click on "Get API key" and create a new key.
-
Set up your environment:
-
Create a file named
.envin the root of your MkDocs project (where yourmkdocs.ymlfile is). -
Add your API key to the
.envfile:GEMINI_API_KEY="your-secret-api-key-here" -
Important: Add the
.envfile to your.gitignoreto keep your key secure.
-
Configuration
In your mkdocs.yml file, add gemini-chatbot to your plugins list. No further configuration is needed if you are using a .env file.
site_name: My Awesome Docs
plugins:
- search
- mkdocstrings
- gemini-chatbot # That's it!
Advanced Configuration
You can customize the chatbot's behavior by adding options under the plugin entry:
plugins:
- gemini-chatbot:
# Optional: Override the .env file (not recommended)
# gemini_api_key: "your-key-here"
# Optional: Change the Gemini model used
model: "gemini-1.5-pro"
# Optional: Customize the chat window title
chat_title: "Ask our AI Assistant"
# Optional: Set a custom initial greeting
initial_prompt: "I'm an AI assistant for these docs. How can I help?"
How It Works
The plugin works by hooking into the MkDocs build process.
- During the build, it processes the final rendered HTML of every page.
- It intelligently extracts all text content and finds all linkable anchors (e.g.,
#section-name) created by MkDocs andmkdocstrings. - This content and anchor information is saved to a
content.jsonfile in your builtsitedirectory. - When a user asks a question, the chatbot sends the user's query, the conversation history, and the entire site's context to the Gemini API, with specific instructions to use the anchors for precision linking.
This ensures that the AI has the most complete and accurate context to answer questions about your documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mkdocs_gemini_chatbot-1.0.1.tar.gz.
File metadata
- Download URL: mkdocs_gemini_chatbot-1.0.1.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
942f41442da2e09b013ad81614ce3f83fc4547d95f19046100f348373fc6a210
|
|
| MD5 |
f78043fe267610149ed4239e26b4d94b
|
|
| BLAKE2b-256 |
e9bc656f697db76d22263b51109338618dcc093ed98b8da6c337005c2b03c49a
|
File details
Details for the file mkdocs_gemini_chatbot-1.0.1-py3-none-any.whl.
File metadata
- Download URL: mkdocs_gemini_chatbot-1.0.1-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ad1016cea92f0c7646f7d489170ca7da2be78172c7462f5138bab33a1b111d1
|
|
| MD5 |
c59927c8bbb28692c44cf7ed835521fa
|
|
| BLAKE2b-256 |
12823233e36944ec0c4042f23d14219833e7452fbb74139b99e567d316a94465
|