Skip to content

Commit

Permalink
chore: version 1.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
longy2k committed Feb 11, 2024
1 parent e160750 commit 4e5cf1c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 16 deletions.
20 changes: 9 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BMO Chatbot for Obsidian
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.
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.

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

## Supported Models
- OpenAI
- gpt-3.5-turbo
- gpt-3.5-turbo-1106
- gpt-4 (Context window: 8,192 tokens)
- gpt-4-turbo-preview (Context window: 128,000 tokens)
- Any self-hosted models using [Ollama](https://ollama.ai).
- See [instructions](https://github.com/longy2k/obsidian-bmo-chatbot/wiki) to setup Ollama with Obsidian.
- Any self-hosted models using OpenAI's REST API URL endpoints.
- [LM Studio](https://lmstudio.ai/)
- [LocalAI](https://github.com/mudler/LocalAI)

## Other Supported Models (Low Support)
I would like to continue supporting Anthropic's models, but I no longer have access to the API.

- Anthropic
- OpenAI
- gpt-3.5-turbo
- gpt-3.5-turbo-1106
- gpt-4 (Context window: 8,192 tokens)
- gpt-4-turbo-preview (Context window: 128,000 tokens)
- Mistral AI's models
- Google Gemini Pro
- Anthropic (Low Support: I no longer have access to the API.)
- claude-instant-1.2
- claude-2.0
- claude-2.1
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "bmo-chatbot",
"name": "BMO Chatbot",
"version": "1.8.6",
"version": "1.8.7",
"minAppVersion": "1.0.0",
"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.\"",
"author": "Longy2k",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bmo-chatbot",
"version": "1.8.6",
"version": "1.8.7",
"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.\"",
"main": "main.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/components/chat/Buttons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ export function displayBotEditButton (settings: BMOSettings, botP: HTMLParagraph
messageBlock.innerHTML = '';
messageBlock.appendChild(editContainer);
} else {
// If messageBlock doesn't exist, you might want to handle this case
console.log('messageBlock not found');
}

Expand Down

0 comments on commit 4e5cf1c

Please sign in to comment.