Update app.py
Browse files
app.py
CHANGED
|
@@ -35,7 +35,7 @@ class BasicAgent:
|
|
| 35 |
self.final_answer = final_answer
|
| 36 |
|
| 37 |
# Create the model
|
| 38 |
-
self.model = InferenceClientModel()
|
| 39 |
|
| 40 |
# Define your system prompt
|
| 41 |
self.system_prompt = """You are a general AI assistant. I will ask you a question. Finish your answer with only: [YOUR FINAL ANSWER]. YOUR FINAL ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string."""
|
|
|
|
| 35 |
self.final_answer = final_answer
|
| 36 |
|
| 37 |
# Create the model
|
| 38 |
+
self.model = InferenceClientModel(model_id="Qwen/Qwen2.5-72B-Instruct")
|
| 39 |
|
| 40 |
# Define your system prompt
|
| 41 |
self.system_prompt = """You are a general AI assistant. I will ask you a question. Finish your answer with only: [YOUR FINAL ANSWER]. YOUR FINAL ANSWER should be a number OR as few words as possible OR a comma separated list of numbers and/or strings. If you are asked for a number, don't use comma to write your number neither use units such as $ or percent sign unless specified otherwise. If you are asked for a string, don't use articles, neither abbreviations (e.g. for cities), and write the digits in plain text unless specified otherwise. If you are asked for a comma separated list, apply the above rules depending of whether the element to be put in the list is a number or a string."""
|