Skip to content

Commit 4e5cf1c

Browse files
committed
chore: version 1.8.7
1 parent e160750 commit 4e5cf1c

File tree

5 files changed

+13
-16
lines changed

5 files changed

+13
-16
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# BMO Chatbot for Obsidian
2-
Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) with OpenAI's ChatGPT, Ollama, LM Studio, OpenRouter, and Mistral AI for Obsidian.
2+
Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, OpenAI's ChatGPT, Mistral AI, and more for Obsidian.
33

44
![Screenshot-1](README_images/Screenshot-1.png)
55
<p align="center">
@@ -72,21 +72,19 @@ To start using the plugin, enable it in your settings menu and enter your OpenAI
7272
- `/stop` or `/s` - Stop fetching response.
7373

7474
## Supported Models
75-
- OpenAI
76-
- gpt-3.5-turbo
77-
- gpt-3.5-turbo-1106
78-
- gpt-4 (Context window: 8,192 tokens)
79-
- gpt-4-turbo-preview (Context window: 128,000 tokens)
8075
- Any self-hosted models using [Ollama](https://ollama.ai).
8176
- See [instructions](https://github.com/longy2k/obsidian-bmo-chatbot/wiki) to setup Ollama with Obsidian.
8277
- Any self-hosted models using OpenAI's REST API URL endpoints.
8378
- [LM Studio](https://lmstudio.ai/)
8479
- [LocalAI](https://github.com/mudler/LocalAI)
85-
86-
## Other Supported Models (Low Support)
87-
I would like to continue supporting Anthropic's models, but I no longer have access to the API.
88-
89-
- Anthropic
80+
- OpenAI
81+
- gpt-3.5-turbo
82+
- gpt-3.5-turbo-1106
83+
- gpt-4 (Context window: 8,192 tokens)
84+
- gpt-4-turbo-preview (Context window: 128,000 tokens)
85+
- Mistral AI's models
86+
- Google Gemini Pro
87+
- Anthropic (Low Support: I no longer have access to the API.)
9088
- claude-instant-1.2
9189
- claude-2.0
9290
- claude-2.1

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "bmo-chatbot",
33
"name": "BMO Chatbot",
4-
"version": "1.8.6",
4+
"version": "1.8.7",
55
"minAppVersion": "1.0.0",
66
"description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) such as OpenAI's \"gpt-3.5-turbo\" and \"gpt-4.\"",
77
"author": "Longy2k",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bmo-chatbot",
3-
"version": "1.8.6",
3+
"version": "1.8.7",
44
"description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) such as OpenAI's \"gpt-3.5-turbo\" and \"gpt-4.\"",
55
"main": "main.js",
66
"scripts": {

src/components/chat/Buttons.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,6 @@ export function displayBotEditButton (settings: BMOSettings, botP: HTMLParagraph
269269
messageBlock.innerHTML = '';
270270
messageBlock.appendChild(editContainer);
271271
} else {
272-
// If messageBlock doesn't exist, you might want to handle this case
273272
console.log('messageBlock not found');
274273
}
275274

0 commit comments

Comments
 (0)