create proof of concept for flowy.stream #48

Open
talksik wants to merge 3 commits from stream-proof-of-concept into main
Showing only changes of commit 7311c710d6 - Show all commits
+7 -1
View File
1
@@ -23,10 +23,16 @@ cd ./thirdparty/llama.cpp
rm -rf build
mkdir -p build
cmake -S. -Bbuild
cmake -S. -Bbuild -DLLAMA_CURL=OFF
cmake --build build
```
The libraries should be in `./thirdparty/llama.cpp/build/bin`.
NOTE: you may have to disable curl as a flag when configuring llama.cpp via cmake.
## Getting started
```sh
make
LD_LIBRARY_PATH=./thirdparty/llama.cpp/build/bin/ ./stream_app
```