Releases: Endle/fireSeqSearch
v0.2.1: Summarization with Local LLM
0.2.1
New feature: Note Summarization with Local LLM.
What happens locally, what stays locally. Your notes will be sent to a local language model (Mistral-7B). The model will summarize hits, and expand the summary into search engine results.
Run server with local LLM
fireSeqSearch facilitates llamafile by Mozilla.
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
Finally, update the Firefox Addon.
Demo Video
2024-09-21_15-04-38.mp4
This demo used AstroWiki, which is licensed under MIT license.
v0.1.3: Wordcloud
0.1.3
New Feature: Generate wordcloud.
Just visit http://127.0.0.1:3030/wordcloud
, and fireSeqSearch will generate a wordcloud with your logseq notes. Each word in the cloud is clickable. With a single click, you can search your top-words in search engines and your personal notes simultaneously.
This demo video used note of greek myth
, created by yongerG. This note is licensed with CC-BY-SA-4.0 license.
Thanks to timdream and other contributors for the amazing library wordcloud2.js.
New Feature: Allow to filter out zotero imported pages Issue 122
v0.1.2: Parse PDF links
0.1.2
New server-side feature: Read and Search PDF contents! In a logseq page, the PDF link ![title](../assets/doc_000123_0.pdf)
will be parsed, and appended to the document.
How to use it
This feature is turned off by default. Adding --parse-pdf-links
to enable PDF parsing. See example
Deficient: Performance. It needs further evaluation.
Thanks
The crate PDF-extract makes this new feature possible. Thanks Jeff Muizelaar and Joep Meindertsma for it.
Clifford Enoc created this feature request.
v0.1.1: ObsidianMD support!
This is the first time for bumping the MINOR version for a big new feature:
ObsidianMD support!
Bug fixes with contribution of xxchan.
Dev change: Added sccache with the support of xuanwo.
This a server side update.
v0.0.24: Bug fix
server-side update.
Several bug fixes
v0.0.23: Bug fix
server-side update.
Fix a regression in v0.0.22
v0.0.22: Include journal pages
This is both server-side and client-side update.
New feature: include journal pages in search results. This feature is turned off by default. Use --enable-journal-query
to enable it.
Currently, I haven't figured out an approach to generate the Logseq URI for a specific journal page.
0.0.20: Bug fix
Fix a regression I introduced in https://github.com/Endle/fireSeqSearch/releases/tag/0.0.19
0.0.19: Bug fix
Test Cyrillic letters
Fix highlight for Cyrillic letters Merge pull request #62 from Endle/Cyrillic Not tested https://github.com/Endle/fireSeqSearch/issues/59