No speedup. MacBook Pro 13, M1, 16GB, Ollama, orca-mini.
Local GPT assistance for maximum privacy and offline access.
The plugin allows you to open a context menu on selected text to pick an AI-assistant's action.
Default actions:
- Continue writing
- Summarize text
- Fix spelling and grammar
- Find action items in text
- General help (just use selected text as a prompt for any purpose)
You can also add yours, share the best actions or get one from the community
Supported AI Providers:
- Ollama
- OpenAI compatible server
Limitations:
- No mobile support.
This plugin is available in the Obsidian community plugin store https://obsidian.md/plugins?id=local-gpt
You can install this plugin via BRAT: pfrankov/obsidian-local-gpt
- Install Ollama. No Windows support yet.
- Install orca-mini (default)
ollama pull orca-mini
or any preferred model from the library.
Additional: if you want to enable streaming completion with Ollama you should run it in API-mode: OLLAMA_ORIGINS='*' ollama serve
.
There are several options to run local OpenAI-like server:
- llama.cpp
- llama-cpp-python
- LocalAI
- ...maybe more
Here is an example for llama.cpp:
- Install llama.cpp and follow build instructions for your OS
- Download a model trained on the ChatML dialog format. For example, Orca 2
- Run the server by calling
./server -c 4096 --host 0.0.0.0 -t 16 --mlock -m models/orca-2-7b.Q4_K_M.gguf
or as described in the documentation.
- Open Obsidian Settings
- Go to Hotkeys
- Filter "Local" and you should see "Local GPT: Show context menu"
- Click on
+
icon and press hotkey (e.g.⌘ + M
)
- Ability to select models from the list instead of typing their names
- Ability to share and apply presets (system prompt + prompt + model)
- Additional AI providers (OpenAI, etc...)
- Streaming completions
- Optional settings for prompts (top_p, top_k, temperature, repeat_penalty)
- Fallback for action if first URL is unavailable (remote GPU)
- Changing order of the actions
- Accounting your local documents in results as described here https://ollama.ai/blog/llms-in-obsidian
If you would like to use other providers, please let me know in the discussions.
- Colored Tags that colorizes tags in distinguishable colors.