lvwerra HF staff pcuenq HF staff commited on
Commit
f510aac
1 Parent(s): 05cc159

Ensure suffix delimiter begins with a space (#2)

Browse files

- Ensure suffix delimiter begins with a space (a1c898c8e5542bda5f9d80ac3b6329033660a9b8)


Co-authored-by: Pedro Cuenca <pcuenq@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ API_URL = "https://api-inference.huggingface.co/models/codellama/CodeLlama-13b-h
15
 
16
  FIM_PREFIX = "<PRE> "
17
  FIM_MIDDLE = " <MID>"
18
- FIM_SUFFIX = "<SUF>"
19
 
20
  FIM_INDICATOR = "<FILL_ME>"
21
 
 
15
 
16
  FIM_PREFIX = "<PRE> "
17
  FIM_MIDDLE = " <MID>"
18
+ FIM_SUFFIX = " <SUF>"
19
 
20
  FIM_INDICATOR = "<FILL_ME>"
21