docs: improve getting started process
This commit is contained in:
+7
-1
@@ -23,10 +23,16 @@ cd ./thirdparty/llama.cpp
|
|||||||
|
|
||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
cmake -S. -Bbuild
|
cmake -S. -Bbuild -DLLAMA_CURL=OFF
|
||||||
cmake --build build
|
cmake --build build
|
||||||
```
|
```
|
||||||
|
|
||||||
The libraries should be in `./thirdparty/llama.cpp/build/bin`.
|
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.
|
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
|
||||||
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user