Update README.md
Browse files
README.md
CHANGED
@@ -46,12 +46,12 @@ Invoke the llama.cpp server or the CLI.
|
|
46 |
|
47 |
### CLI:
|
48 |
```bash
|
49 |
-
llama-cli --hf-repo
|
50 |
```
|
51 |
|
52 |
### Server:
|
53 |
```bash
|
54 |
-
llama-server --hf-repo
|
55 |
```
|
56 |
|
57 |
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
@@ -68,9 +68,9 @@ cd llama.cpp && LLAMA_CURL=1 make
|
|
68 |
|
69 |
Step 3: Run inference through the main binary.
|
70 |
```
|
71 |
-
./llama-cli --hf-repo
|
72 |
```
|
73 |
or
|
74 |
```
|
75 |
-
./llama-server --hf-repo
|
76 |
```
|
|
|
46 |
|
47 |
### CLI:
|
48 |
```bash
|
49 |
+
llama-cli --hf-repo XeAI/LLaMa_3.2_3B_Instruct_Text2SQL-Q4_K_M-GGUF --hf-file llama_3.2_3b_instruct_text2sql-q4_k_m.gguf -p "The meaning to life and the universe is"
|
50 |
```
|
51 |
|
52 |
### Server:
|
53 |
```bash
|
54 |
+
llama-server --hf-repo XeAI/LLaMa_3.2_3B_Instruct_Text2SQL-Q4_K_M-GGUF --hf-file llama_3.2_3b_instruct_text2sql-q4_k_m.gguf -c 2048
|
55 |
```
|
56 |
|
57 |
Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
|
|
|
68 |
|
69 |
Step 3: Run inference through the main binary.
|
70 |
```
|
71 |
+
./llama-cli --hf-repo XeAI/LLaMa_3.2_3B_Instruct_Text2SQL-Q4_K_M-GGUF --hf-file llama_3.2_3b_instruct_text2sql-q4_k_m.gguf -p "The meaning to life and the universe is"
|
72 |
```
|
73 |
or
|
74 |
```
|
75 |
+
./llama-server --hf-repo XeAI/LLaMa_3.2_3B_Instruct_Text2SQL-Q4_K_M-GGUF --hf-file llama_3.2_3b_instruct_text2sql-q4_k_m.gguf -c 2048
|
76 |
```
|