apepkuss79 commited on
Commit
79b04e3
1 Parent(s): f990587

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -7
README.md CHANGED
@@ -46,13 +46,25 @@ language:
46
 
47
  - Run as LlamaEdge service
48
 
49
- ```bash
50
- wasmedge --dir .:. --nn-preload default:GGML:AUTO:Hermes-2-Pro-Llama-3-8B-Q5_K_M.gguf \
51
- llama-api-server.wasm \
52
- --prompt-template chatml \
53
- --ctx-size 4096 \
54
- --model-name hermes-2-pro-llama-3-8b
55
- ```
 
 
 
 
 
 
 
 
 
 
 
 
56
 
57
  - Run as LlamaEdge command app
58
 
 
46
 
47
  - Run as LlamaEdge service
48
 
49
+ - Chat
50
+
51
+ ```bash
52
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Hermes-2-Pro-Llama-3-8B-Q5_K_M.gguf \
53
+ llama-api-server.wasm \
54
+ --prompt-template chatml \
55
+ --ctx-size 4096 \
56
+ --model-name hermes-2-pro-llama-3-8b
57
+ ```
58
+
59
+ - Tool use
60
+
61
+ ```bash
62
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Hermes-2-Pro-Llama-3-8B-Q5_K_M.gguf \
63
+ llama-api-server.wasm \
64
+ --prompt-template chatml-tool \
65
+ --ctx-size 4096 \
66
+ --model-name hermes-2-pro-llama-3-8b
67
+ ```
68
 
69
  - Run as LlamaEdge command app
70