-
|
I am wondering if embeddings could somehow be used alongside or as a supplement to iwe? @gimalay - do you have any thoughts on if that could make sense? |
Beta Was this translation helpful? Give feedback.
Answered by
gimalay
Apr 26, 2026
Replies: 2 comments 17 replies
-
|
Hey @kiil, Thanks for starting the discussion. What problem would you try to solve with embeddings? Want is the outcome you are looking for? |
Beta Was this translation helpful? Give feedback.
12 replies
-
|
btw, @gimalay - have you seen this: reekta92/graf: A TUI graph view for markdown files with wikilinks. Customizable. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was thinking about this and cannot find a good way to use embeddings in iwe.
For this step:
User asks a question → find the 3-5 semantically closest notesAI agent can read through the contents of your library (headings/key) and tell you what's matching and then retrieve. The benefit of doing this using embeddings is the speed. But the downside is that you need to re-index and cache embeddings and it requires an embeddings model which is pretty heavy dependency.
I'm not sure if we need speed for this. LLM can do contents scan relatively fast (for a small library) and update iwe existing indexes (links, etc) for future fast retrieval.
There may be a use case I just do see it yet.