This commit is contained in:
Logan Yang 2023-06-16 10:58:29 -07:00 committed by GitHub
parent 5a1cfce275
commit b06dba58ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 6 deletions

View file

@ -17,7 +17,7 @@ My goal is to make this AI assistant **local-first** and **privacy-focused**. Mo
- Chat with ChatGPT right inside Obsidian in the Copilot Chat window.
- No repetitive login. Use your own API key (stored locally).
- No monthly fee. Pay only for what you use.
- Model selection of GPT-3.5, GPT-4 and more.
- Model selection of GPT-3.5, GPT-4, Azure OpenAI models and more.
- No need to buy ChatGPT Plus to use GPT-4 **if you have API access**.
- No usage cap for GPT-4 like ChatGPT Plus.
- One-click copying any message as markdown.

View file

@ -1,7 +1,7 @@
{
"id": "copilot",
"name": "Copilot",
"version": "2.3.1",
"version": "2.3.2",
"minAppVersion": "0.15.0",
"description": "A ChatGPT Copilot in Obsidian.",
"author": "Logan Yang",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "obsidian-copilot",
"version": "2.3.1",
"version": "2.3.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "obsidian-copilot",
"version": "2.3.1",
"version": "2.3.2",
"license": "AGPL-3.0",
"dependencies": {
"@huggingface/inference": "^1.8.0",

View file

@ -1,6 +1,6 @@
{
"name": "obsidian-copilot",
"version": "2.3.1",
"version": "2.3.2",
"description": "ChatGPT integration for Obsidian",
"main": "main.js",
"scripts": {

View file

@ -15,5 +15,6 @@
"2.2.3": "0.15.0",
"2.2.4": "0.15.0",
"2.3.0": "0.15.0",
"2.3.1": "0.15.0"
"2.3.1": "0.15.0",
"2.3.2": "0.15.0"
}