jpacifico commited on
Commit
c6d1f31
1 Parent(s): 01ff4e7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -9
README.md CHANGED
@@ -21,14 +21,9 @@ Ollama Modelfile example :
21
  ```bash
22
  FROM ./Vigalpaca-French-7B-ties-quantized-q8_0.gguf
23
 
24
- PARAMETER stop {
25
- "stop": [
26
- "[INST]",
27
- "[/INST]"
28
- ]
29
- }
30
-
31
- TEMPLATE """
32
- [INST] {{ .System }} {{ .Prompt }} [/INST]
33
  """
34
  ```
 
21
  ```bash
22
  FROM ./Vigalpaca-French-7B-ties-quantized-q8_0.gguf
23
 
24
+ TEMPLATE """[INST] {{ .System }} {{ .Prompt }} [/INST]"""
25
+ PARAMETER stop "[INST]"
26
+ PARAMETER stop "[/INST]"
27
+ SYSTEM """Tu es un assistant IA nommé Vigalpaca. Tu dois répondre de manière concise et bienveillante aux questions posées par l'utilisateur."""
 
 
 
 
 
28
  """
29
  ```