Clean up
Browse files
app.py
CHANGED
|
@@ -47,7 +47,7 @@ class BasicAgent:
|
|
| 47 |
# self.model = OpenAIServerModel(model_id="gpt-4o")
|
| 48 |
|
| 49 |
# Define your system prompt
|
| 50 |
-
self.system_prompt = """You are a general AI assistant. I will ask you a question. Finish your answer with only
|
| 51 |
|
| 52 |
# Create the agent with tools
|
| 53 |
self.agent = CodeAgent(
|
|
@@ -65,7 +65,8 @@ class BasicAgent:
|
|
| 65 |
|
| 66 |
try:
|
| 67 |
# Run the agent with the question
|
| 68 |
-
formatted_question = f"{
|
|
|
|
| 69 |
answer = self.agent.run(formatted_question)
|
| 70 |
answer = str(answer).strip() if answer is not None else "No answer produced."
|
| 71 |
# answer = self.agent.run(question)
|
|
|
|
| 47 |
# self.model = OpenAIServerModel(model_id="gpt-4o")
|
| 48 |
|
| 49 |
# Define your system prompt
|
| 50 |
+
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."""
|
| 51 |
|
| 52 |
# Create the agent with tools
|
| 53 |
self.agent = CodeAgent(
|
|
|
|
| 65 |
|
| 66 |
try:
|
| 67 |
# Run the agent with the question
|
| 68 |
+
formatted_question = f"{question}\n\nOnly return the exact answer, no explanation."
|
| 69 |
+
# formatted_question = f"{self.system_prompt}\n\nQuestion: {question}\n\n"
|
| 70 |
answer = self.agent.run(formatted_question)
|
| 71 |
answer = str(answer).strip() if answer is not None else "No answer produced."
|
| 72 |
# answer = self.agent.run(question)
|