top | item 43298152

(no title)

Dontizi | 11 months ago

Hey! Yes, that's something I was planning to do—a complete documentation on the code, its architecture, and the entire stack to allow others to develop alongside me. I just deployed a functional version, and soon, the website will have documentation with its architecture and a visualization of the entire code.

but for now here is the stack used: Core Language: Go (chosen for performance, cross-platform compatibility, and single binary distribution) CLI Framework: Cobra (for command-line interface structure) LLM Integration: Ollama API (for embeddings and completions) Storage: Local filesystem-based storage (JSON files for simplicity and portability) Vector Search: Custom implementation of cosine similarity for embedding retrieval

discuss

order

dcreater|11 months ago

Why not use an established open source vector db like pg_vector etc? I imagine your implementation is not going to be as performant

Xiol32|11 months ago

Defeats the point of the single binary installation if you have to set up dependencies.