Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ huggingface_token = os.getenv("HF_TOKEN")
|
|
9 |
|
10 |
infer_prompt = "فيما يلي تعليمات تصف مهمة. اكتب استجابة تكمل الطلب بشكل مناسب.\n\n### تعليمات:\n{}\n\n### إجابة:\n"
|
11 |
model_id = "nazimali/mistral-7b-v0.3-instruct-arabic"
|
12 |
-
file_name = "
|
13 |
llm = None
|
14 |
|
15 |
|
@@ -38,7 +38,7 @@ def respond(
|
|
38 |
|
39 |
stream = llm.create_chat_completion(
|
40 |
messages=[{"role": "user", "content": infer_prompt.format(message) }],
|
41 |
-
max_tokens=
|
42 |
repeat_penalty=1.2,
|
43 |
stream=True,
|
44 |
temperature=0.7,
|
@@ -54,7 +54,7 @@ def respond(
|
|
54 |
|
55 |
|
56 |
|
57 |
-
demo = gr.ChatInterface(respond, examples=["السلام عليكم", "hello"], title="Mistral 7B Arabic Fine-tuned")
|
58 |
|
59 |
|
60 |
if __name__ == "__main__":
|
|
|
9 |
|
10 |
infer_prompt = "فيما يلي تعليمات تصف مهمة. اكتب استجابة تكمل الطلب بشكل مناسب.\n\n### تعليمات:\n{}\n\n### إجابة:\n"
|
11 |
model_id = "nazimali/mistral-7b-v0.3-instruct-arabic"
|
12 |
+
file_name = "Q4_K_M.gguf"
|
13 |
llm = None
|
14 |
|
15 |
|
|
|
38 |
|
39 |
stream = llm.create_chat_completion(
|
40 |
messages=[{"role": "user", "content": infer_prompt.format(message) }],
|
41 |
+
max_tokens=512,
|
42 |
repeat_penalty=1.2,
|
43 |
stream=True,
|
44 |
temperature=0.7,
|
|
|
54 |
|
55 |
|
56 |
|
57 |
+
demo = gr.ChatInterface(respond, examples=["السلام عليكم كيف حالك؟", "hello"], title="Mistral 7B Arabic Fine-tuned")
|
58 |
|
59 |
|
60 |
if __name__ == "__main__":
|