gobean commited on
Commit
6ac790e
1 Parent(s): a7f2521

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -9
README.md CHANGED
@@ -7,19 +7,30 @@ Safetensors came directly from their [source](https://huggingface.co/Nexusflow/S
7
  converted to gguf and then quantized to q5-k-m with [llama.cpp](https://github.com/ggerganov/llama.cpp),
8
  and then zipped into a llamafile using [Mozilla's awesome project](https://github.com/Mozilla-Ocho/llamafile).
9
 
10
- It's over 4gb so if you want to use it on Windows you'll have to run it from WSL.
11
 
12
- WSL note: If you get the error about APE, and the recommended command
13
 
14
- `sudo sh -c 'echo -1 > /proc/sys/fs/binfmt_misc/WSLInterop'`
15
 
16
- doesn't work, the file might be named something else so I had success with
 
 
 
17
 
18
- `sudo sh -c 'echo -1 > /proc/sys/fs/binfmt_misc/WSLInterop-late'`
19
 
20
- If that fails too, just navigate to `/proc/sys/fs/binfmt_msc` and see what files look like `WSLInterop` and echo a -1 to whatever it's called by changing that part of the recommended command.
21
 
 
22
 
23
- Llamafiles are a standalone executable that run an LLM server locally on a variety of operating systems.
24
- You just run it, open the chat interface in a browser, and interact.
25
- Options can be passed in to expose the api etc.
 
 
 
 
 
 
 
 
 
 
 
7
  converted to gguf and then quantized to q5-k-m with [llama.cpp](https://github.com/ggerganov/llama.cpp),
8
  and then zipped into a llamafile using [Mozilla's awesome project](https://github.com/Mozilla-Ocho/llamafile).
9
 
 
10
 
 
11
 
12
+ -= Llamafile =-
13
 
14
+ Llamafiles are a standalone executable that run an LLM server locally on a variety of operating systems including FreeBSD, Windows, Windows via WSL, Linux, and Mac.
15
+ The same file works everywhere, I've tested several of these on FreeBSD, Windows, Windows via WSL, and Linux.
16
+ You just download the .llamafile, (chmod +x or rename to .exe as needed), run it, open the chat interface in a browser, and interact.
17
+ Options can be passed in to expose the api etc. See their [docs](https://github.com/Mozilla-Ocho/llamafile) for details.
18
 
19
+ [Mozilla Blog Announcement for Llamafile](https://hacks.mozilla.org/2023/11/introducing-llamafile/)
20
 
 
21
 
22
+ - Windows note: If it's over 4gb and you want to use it on Windows, you'll have to run it from WSL.
23
 
24
+ - WSL note: If you get the error about APE, and the recommended command
25
+
26
+ `sudo sh -c 'echo -1 > /proc/sys/fs/binfmt_misc/WSLInterop'`
27
+
28
+ doesn't work, the WSLInterop file might be named something else. I had success with
29
+
30
+ `sudo sh -c 'echo -1 > /proc/sys/fs/binfmt_misc/WSLInterop-late'`
31
+
32
+ If that fails too, just navigate to `/proc/sys/fs/binfmt_msc` and see what files look like `WSLInterop`
33
+ and echo a -1 to whatever they're called by changing that part of the recommended command.
34
+
35
+
36
+ - FreeBSD note: Yes, it actually works on a fresh install of FreeBSD.