diff --git a/README.md b/README.md index d7c3d57..fa37125 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# Llama2.c port to JavaScript +# Llamajs This is a JavaScript version of the popular [llama2.c](https://github.com/karpathy/llama2.c) library by Andrej Karpathy. -Place the model file (e.g. [stories15M.bin]()) into the directory. +Place a model file (e.g. [stories15M.bin](https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.bin)) into the directory. ```sh wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.bin ``` @@ -16,7 +16,7 @@ Then run the LLM. The repo is not yet on npm, byt if you prefer to run from outside of the repo you can install it globally via npm ```sh -> npm install -g . +> npm install -g https://github.com/agershun/llamajs > llamajs stories15M.bin -i "Tell me a story " ```