Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qgrail/obsidian-ai-assistant
AI Assistant Plugin for Obsidian
https://github.com/qgrail/obsidian-ai-assistant
Last synced: 3 months ago
JSON representation
AI Assistant Plugin for Obsidian
- Host: GitHub
- URL: https://github.com/qgrail/obsidian-ai-assistant
- Owner: qgrail
- License: mit
- Created: 2023-03-10T19:05:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-12T17:03:28.000Z (4 months ago)
- Last Synced: 2024-07-13T18:59:30.184Z (4 months ago)
- Language: TypeScript
- Size: 20.4 MB
- Stars: 171
- Watchers: 5
- Forks: 17
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- project-awesome - qgrail/obsidian-ai-assistant - AI Assistant Plugin for Obsidian (TypeScript)
- jimsghstars - qgrail/obsidian-ai-assistant - AI Assistant Plugin for Obsidian (TypeScript)
README
# Obsidian AI Assistant
Simple plugin to enable interactions with AI models such as [OpenAI ChatGPT](https://openai.com/blog/chatgpt), [Anthropic Claude](https://docs.anthropic.com/en/docs/models-overview), [OpenAI DALL·E](https://openai.com/product/dall-e-3), [OpenAI Whisper](https://openai.com/research/whisper) directly from your [Obsidian](https://obsidian.md/) notes.
The current available features of this plugin are:
- 🤖 Text assistant with OpenAI GPTs and Anthropic Claude models,
- 🖼 Image generation with DALL·E3 and DALL·E2,
- 🗣 Speech to text with Whisper.## Latest Updates
- Claude Sonnet 3.5 and GPT-4o are available.
## How to use
### 🤖 Text Assistant
You have two commands to interact with the text assistant:
1. Chat mode,
2. Prompt mode.| Chat Mode | Prompt Mode |
| :---------------------: | :-----------------------: |
| ![](gifs/chat_mode.gif) | ![](gifs/prompt_mode.gif) |#### Chat mode
Chat with the AI assistant from your Vault to generate content for your notes.
From the chat, you can clic on any interaction to copy it directly to your clipboard.
You can also copy the whole conversation.
Chat mode now allows you to upload images to interact with GPT4-Vision or Claude models.#### Prompt mode
Prompt mode allows you to use a selected piece of text from your note as input for the assistant.
From here you can ask the assistant to translate, summarize, generate code ect.### 🖼 Image Assistant
Generate images for your notes.\
In the result window, select the images you want to keep.\
They will automatically be downloaded to your vault and their path copied to your clipboard.\
Then, you can paste the images anywhere in your notes.### 🗣 Speech to Text
Launch the Speech to Text command and start dictating your notes.\
The transcript will be immediately added to your note at your cursor location.## Settings
### Text Assistant
- **Model choice**: choice of the text model. Currently `gpt-3.5-turbo`, `gpt-4-turbo` and `gpt-4` are supported.
- **Maximum number of tokens** in the generated answer
- **Replace or Add below**: In prompt mode, after having selected text from your note and enter your prompt,
you can decide to replace your text by the assistant answer or to paste it bellow.### Image Assistant
- You can switch between **DALL·E3** and **DALL·E2**,
- Change the default folder of generated images.### Speech to Text
- The model used is **Whisper**,
- You can change the default **language** to improve the accuracy and latency of the model. If you leave it empty, the model will automatically detect it.## How to install
#### From the community plugins
You can install the [AI Assistant](https://obsidian.md/plugins?id=ai-assistant) directly from the Obsidian community plugins.
#### Get latest version from git
1. `cd path/to/vault/.obsidian/plugins`
2. `git clone https://github.com/qgrail/obsidian-ai-assistant.git && cd obsidian-ai-assistant`
3. `npm install && npm run build`
4. Open **Obsidian Preferences** -> **Community plugins**
5. Refresh Installed plugins and activate AI Assistant.## Requirements
- To use this plugin, with OpenAI models, you need an official API key from [here](https://platform.openai.com/account/api-keys),
- To use this plugin, with Anthropic Claude models, you need an official API key from [here](https://console.anthropic.com/settings/keys).