text
stringlengths
0
1.15k
### Configure Obsidian Hotkey
1. Open Obsidian Settings.
2. Go to Hotkeys.
3. Filter "Local" and you should see "Local GPT: Show context menu".
4. Click on `+` icon and press hotkey (e.g. `⌘ + M`).
![](/img/docs/obsidian-hotkey.png)
As long as you have set the hotkey, while writing or editing a note, select the text you want to interact with, and press the hotkey you have set to use this LLM powered plugin!
## Use Cases
### **Text Continuation**
* Select a text segment, right-click, and choose "Continue writing". The model will generate the continuation (displayed in the screenshot in grey).
![](/img/docs/obsidian-text-continuation.png)
### **Summarization**
* Select a longer text segment, right-click, and choose "Summarize text". The model provides a summary as below of the CNAI report content I selected.
![](/img/docs/obsidian-summarization.png)
Here is a concise summary of the key points:
* Cloud Native (CN) refers to well-balanced systems built using microservices, promoting modular design and reusability.
* Kubernetes has become the de facto cloud operating system, offering scalability, resilience, and DevOps best practices.
* Every Cloud Service Provider offers Kubernetes as a service, facilitating access to infrastructure and support services for various workloads, including AI/ML.
* The Cloud Native Computing Foundation defines Cloud Native as empowering organizations to build scalable applications in modern environments using containers, microservices, and declarative APIs.
* Cloud Native Artificial Intelligence (CNAI) is an evolving extension of Cloud Native, focusing on building and deploying AI applications and workloads using Cloud Native principles.
### **Spelling and Grammar Check**
* Select text, right-click, and choose "Fix spelling and grammar". The model will correct errors.
![](/img/docs/obsidian-grammar.png)
### **Extract Action Items**
* For notes with multiple tasks, select the text and click "Find action items". The model will list the tasks.
![](/img/docs/obsidian-extract.png)
The Generated content are displayed below your own text:
`Here are the action items extracted from the document in Markdown checkbox format:`
* `[ ] Add feedback on WasmEdge Q3 Roadmap Discussion`
* `[ ] Provide input on Update on WasmEdge Community Governance`
* `[ ] Discuss any additional topics at the meeting (add to [https://docs.google.com/document/d/1iFlVl7R97Lze4RDykzElJGDjjWYDlkI8Rhf8g4dQ5Rk/edit#](https://docs.google.com/document/d/1iFlVl7R97Lze4RDykzElJGDjjWYDlkI8Rhf8g4dQ5Rk/edit))`
`Let me know if you'd like me to help with anything else!`
### **General Assistance**
* Select any text and click "General help" to get contextually relevant information from the model.
I entered and selected some information on KubeCon + CloudNativeCon + Open Source Summit + AI_dev China 2024.
Because llama3 has not been trained with info on this conference, so the output is not very helpful:
`The information you're looking for is not present in this context.`
`If you need to know the format and dates of KubeCon + CloudNativeCon + Open Source Summit + AI_dev China 2024, I suggest searching for official announcements or websites related to these events.`
## Try it now!
Ready to supercharge your note-taking with AI? Get started with the Obsidian-local-gpt plugin and Gaia today:
1. Set up the Obsidian-local-gpt plugin in your Obsidian app.
2. Explore the various AI-powered features to enhance your productivity.
Start your journey towards smarter, more efficient note-taking now!
---
## Open WebUI
# Open WebUI
You can configure the Open WebUI framework, a self-hosted WebUI, using any Gaia node as the backend LLM API. That allows you to use your own or community Gaia nodes in any application built on Open WebUI.
## Prerequisites
You will need a Gaia node ready to provide LLM services through a public URL. You can
* [run your own node](../../getting-started/quick-start/quick-start.md)
* [use a public node](../../nodes/nodes.md)
In this tutorial, we will use public nodes to power the Continue plugin.
| Model type | API base URL | Model name |
|-----|--------|-----|
| Chat | https://llama8b.gaia.domains/v1 | llama |
| Embedding | https://llama8b.gaia.domains/v1 | nomic |
## Start the Open WebUI on your machine
After successfully starting the Gaia node, you can use `docker run` to start the Open WebUI.