File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -958,23 +958,23 @@ ros2 llama launch ~/ros2_ws/src/llama_ros/llama_bringup/models/jina-reranker.yam
958
958
```
959
959
960
960
``` shell
961
- ros2 llama launch Llama-3 .yaml
961
+ ros2 llama launch Qwen2 .yaml
962
962
```
963
963
964
964
<details >
965
965
<summary >Click to expand Llama-3.yaml</summary >
966
966
967
967
``` yaml
968
- n_ctx : 4096
968
+ _ctx : 4096
969
969
n_batch : 256
970
970
n_gpu_layers : 33
971
971
n_threads : -1
972
972
n_predict : -1
973
973
974
- model_repo : " lmstudio-community/Llama-3.2-1B -Instruct-GGUF"
975
- model_filename : " Llama-3.2-1B-Instruct-Q8_0 .gguf"
974
+ model_repo : " Qwen/Qwen2.5-Coder-3B -Instruct-GGUF"
975
+ model_filename : " qwen2.5-coder-3b-instruct-q4_k_m .gguf"
976
976
977
- stopping_words : ["<|eot_id |>"]
977
+ stopping_words : ["<|im_end |>"]
978
978
` ` `
979
979
980
980
</details>
Original file line number Diff line number Diff line change 57
57
# create prompt
58
58
prompt = ChatPromptTemplate .from_messages (
59
59
[
60
- SystemMessage ("You are an AI assistant that answer questions." ),
60
+ SystemMessage ("You are an AI assistant that answer questions briefly ." ),
61
61
HumanMessagePromptTemplate .from_template (
62
- "Taking into account the followin context :{context}\n \n Answer this question: {question}"
62
+ "Taking into account the followin information :{context}\n \n {question}"
63
63
),
64
64
]
65
65
)
You can’t perform that action at this time.
0 commit comments