forked from andreasjansson/llama-2-grammar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (26 loc) · 1.05 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: all
all: codellama-34b-instruct codellama-7b-instruct llama-2-70b-chat llama-2-13b-chat llama-2-13b wizardcoder-python-34b-v1
.PHONY: codellama-34b-instruct
codellama-34b-instruct:
echo "codellama-34b-instruct.Q5_K_S.gguf" > model.txt
cog push r8.im/andreasjansson/codellama-34b-instruct-gguf
.PHONY: codellama-7b-instruct
codellama-7b-instruct:
echo "codellama-7b-instruct.Q5_K_S.gguf" > model.txt
cog push r8.im/andreasjansson/codellama-7b-instruct-gguf
.PHONY: llama-2-70b-chat
llama-2-70b-chat:
echo "llama-2-70b-chat.Q4_K_M.gguf" > model.txt
cog push r8.im/andreasjansson/llama-2-70b-chat-gguf
.PHONY: llama-2-13b-chat
llama-2-13b-chat:
echo "llama-2-13b-chat.Q5_K_S.gguf" > model.txt
cog push r8.im/andreasjansson/llama-2-13b-chat-gguf
.PHONY: llama-2-13b
llama-2-13b:
echo "llama-2-13b.Q5_K_S.gguf" > model.txt
cog push r8.im/andreasjansson/llama-2-13b-gguf
.PHONY: wizardcoder-python-34b-v1
wizardcoder-python-34b-v1:
echo "wizardcoder-python-34b-v1.0.Q5_K_M.gguf" > model.txt
cog push r8.im/andreasjansson/wizardcoder-python-34b-v1-gguf