diff --git a/README.md b/README.md index 8de58bd..806305b 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ This plugin integrates a local Large Language Model (LLM) service with Obsidian for summarizing and transforming text. ### Features +v1.0.10 +* Ollama support + support for all LLM servers that support OpenAI API /v1/chat/completions endpoint. +* Better prompts for available personas. + v1.0.9 * Added personas to choose from - available in Settings menu (raise issue for new persona needs) diff --git a/manifest.json b/manifest.json index 4d2f64f..5d4fca2 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "local-llm-helper", "name": "Local LLM Helper", - "version": "1.0.9", + "version": "1.0.10", "minAppVersion": "1.5.12", "description": "Use your own secure local LLM server to work with your text!", "author": "Mani Mohan", diff --git a/updatetags.sh b/updatetags.sh index bddd1c7..30abe2b 100755 --- a/updatetags.sh +++ b/updatetags.sh @@ -1,3 +1,3 @@ #make sure to edit manifest.json - the version numbers must match! -git tag -a 1.0.9 -m "1.0.9" +git tag -a 1.0.10 -m "1.0.10" git push origin 1.0.9