Most features are accessible through the Graph Prompt view
button in the menu opened by clicking the Expand
button in the right upper corner of Obsidian.
Vault view
will give you a comprehensive understanding of your notes and knowledge by visualizing your entire Obsidian vault as a dynamic knowledge graph.Vault view
and File view
to get a detailed visualization of specific files.File view
you will get highlighted sentences thematically connected to that node in your editor.
Right click on the highlighted text in the editor to access the following features:
Generate questions: Extract thought-provoking questions from your markdown files, encouraging deeper contemplation and critical thinking.
Link prediction: Automatically generate links to other markdown files in your vault that are thematically connected to the highlighted text, enriching your notes with relevant references.
Node suggestion: Access thematically connected nodes related to the highlighted text, fostering meaningful connections and comprehensive understanding of your information.
Warning It is recommended that you have access to GPT-4 via the OpenAI API. GPT-3.5 will probably fail to make correct knowledge graphs from your data. Since we still don't have access to GPT-4 OpenAI API, although we made our account a month ago and generated >1$ in billing a week ago, the
init_repo
,update_file
andadd_file
endpoints are still untested. We initialized knowledge graphs manually, through ChatGPT. Here be dragons.
Before you begin, make sure you have the following:
Download the Plugin:
git clone https://github.com/memgraph/odin.git
Install Dependencies and Start the Plugin:
cd odin
You have the option to install ODIN using Docker, which will automatically install, set up and run the Memgraph database, the backend, and frontend components, or you can manually run the project locally for a more customized setup or if you already have Memgraph up and running.
Before you start, make sure you have a running Docker instance and Docker compose installed.
You will need to create a .env
file inside the ODIN folder with your OpenAI API key to access the app features. It should look like this:
OPENAI_API_KEY=YOUR_API_KEY
LLM_MODEL_NAME=gpt-4 # try with other models at your own risk
Where YOUR_API_KEY is a key you can get here.
Run:
docker compose up
It will take up to ten minutes to download and run all dependencies. Now, that you have ODIN successfully installed, you can go to the next step.
Make sure you have Node.js version 14 or above and npm installed.
Install the required Node.js dependencies:
npm install
Start the development build:
npm run dev
You now have the app frontend up and running.
Disable Restricted Mode:
Enable the Plugin:
Plugin Usage: