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>
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 |
|