Standards Covered: ISA 5.1 | ISO 10628-2 | ISO 14617 | PIP PIC001
Compiled: March 2026
This is not working complete code.
This is strictly a v0.2, scrapy, proof of concept version of a personal AI Assistant working end to end in just ~726 LOC.
This is the second iteration showcasing the two-way prompt aka multi-step human in the loop. The initial, v0, assistant version is here.
It's only a frame of reference for you to consume the core ideas of how to build a POC of a personal AI Assistant.
To see the high level of how this works check out the explanation video. To follow our agentic journey check out the @IndyDevDan channel.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git clone git@github.com:huggingface/text-embeddings-inference.git | |
| cd text-embeddings-inference | |
| cargo install --path router -F candle -F accelerate | |
| model=BAAI/bge-large-en-v1.5 | |
| revision=refs/pr/5 | |
| text-embeddings-router --model-id $model --revision $revision --port 8080 |