A plugin for Obsidian that adds an AI assistant with RAG functionality via Cloudflare AI.
- 🤖 Chat with AI through Cloudflare AI Gateway using their provided Models.
- Both a modal and a view in the Obsidian sidebar is supported.
- 📝 Sync your Obsidian notes to a Cloudflare Vectorize index.
- You can also ignore folders if you don't want to sync them.
- State is saved in the
.cloudflare-ai/sync
folder, this ensures that we don't sync the same note multiple times. - Deleting a note from Obsidian will also delete it from the Vectorize index.
- Handles large notes by chunking them into smaller pieces.
- 🔄 Auto-sync your Obsidian notes to the Vectorize index at a set interval.
- 🔍 Filter the notes provided in the AI's context by created or modified dates as well as the type of note.
- ⚙️ Generate text from templates with some default options for summarising, rewriting, etc, as well as the ability to load in your own templates.
This is currently a work in progress, however, for now, here's a quick preview of the chat with a response that uses matching notes for context:
Obsidian.-.AI.Gateway.Changelog.-.test-vault.-.Obsidian.v1.7.7.2024-12-23.at.3.24.17.PM.mp4
- Add the ability to send properties in the metadata.
- Add an image generation mode where you can insert the response into the current note.
- Add a speech to text mode.
- Look at adding other providers like Anthropic, OpenAI, etc.
- Store the ragId in the database and update my assistant to use that if available
- Cloudflare account
- A Cloudflare AI Gateway service, you can find out how to get started here
- A Cloudflare Vectorize index, you can find out more here
- Cloudflare API key for both Vectorize and AI Gateway, more information on how to do this can be found here
- You will need to create a token with the following permissions, you can create two tokens or one token with both permissions if you prefer.
Read
andWrite
access toVectorize
Read
access toAI Gateway
- You will need to create a token with the following permissions, you can create two tokens or one token with both permissions if you prefer.
- Navigate to the Releases page and download the
.zip
file from the latest release. It will be named something likecloudflare-ai-0.0.5.zip
. - Navigate to your Obsidian plugins folder, such as
path/to/vault/.obsidian/plugins
. - Unzip the downloaded file and move the
obsidian-cloudflare-ai
folder into the plugins folder. - Open Obsidian and enable the plugin in the Obsidian settings.
- Refresh your installed plugins list.
In order for the filters to work, you will need to create a number of indexes in Vectorize.
These include:
type
- StringcreatedMonth
- NumbercreatedYear
- NumbermodifiedMonth
- NumbermodifiedYear
- Numberextension
- String
You can use Wrangler to do this, for example:
npx wrangler vectorize create-metadata-index obsidian-embeddings-baai --type=string --property-name=extension
Please not that you can only have a maximum of 10 indexes.
Props to the Obsidian Svelte Plugin for the base structure!