Spaces:
Running
Running
Update rag_utils.py
Browse files- rag_utils.py +1 -1
rag_utils.py
CHANGED
@@ -48,5 +48,5 @@ Question : {question}
|
|
48 |
Réponse :
|
49 |
"""
|
50 |
|
51 |
-
output = llm(prompt, max_tokens=
|
52 |
return output["choices"][0]["text"].strip()
|
|
|
48 |
Réponse :
|
49 |
"""
|
50 |
|
51 |
+
output = llm(prompt, max_tokens=128, stop=["</s>"])
|
52 |
return output["choices"][0]["text"].strip()
|