From 91662d605d0c079ce3f5eb4a2f3dfe43c0b23ddc Mon Sep 17 00:00:00 2001 From: Zhenbo Li <3221521+Endle@users.noreply.github.com> Date: Sun, 22 Sep 2024 22:50:22 -0400 Subject: [PATCH] Update release_notes_0.2_2024Sep.md --- docs/release_notes_0.2_2024Sep.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/docs/release_notes_0.2_2024Sep.md b/docs/release_notes_0.2_2024Sep.md index 3276e5f..fee491a 100644 --- a/docs/release_notes_0.2_2024Sep.md +++ b/docs/release_notes_0.2_2024Sep.md @@ -1,11 +1,27 @@ ### 0.2.1 -LLM Summarization +New feature: Note Summarization with Local LLM. -#### What Happens Locally, Stays Locally +#### Run server with local LLM +fireSeqSearch facilitates [llamafile](https://github.com/Mozilla-Ocho/llamafile) by [Mozilla](https://github.com/Mozilla-Ocho). +``` +mkdir -pv ~/.llamafile && cd ~/.llamafile +wget https://huggingface.co/Mozilla/Mistral-7B-Instruct-v0.2-llamafile/resolve/main/mistral-7b-instruct-v0.2.Q4_0.llamafile?download=true +chmod +x mistral-7b-instruct-v0.2.Q4_0.llamafile +``` +After that, compile and run fireSeqSearch with LLM +``` +cargo build --features llm +target/debug/fire_seq_search_server --notebook_path ~/logseq +# Obsidian users +target/debug/fire_seq_search_server --notebook_path ~/obsidian --obsidian-md +``` -#### Demo +Finally, update the [Firefox Addon](https://addons.mozilla.org/en-US/firefox/addon/fireseqsearch/). + +#### Demo Video https://github.com/user-attachments/assets/b0a4ca66-0a33-401a-a916-af7a69f2ae7b +This demo used [AstroWiki](https://github.com/AYelland/AstroWiki_2.0), which is licensed under MIT license.