Add system prompt
Browse files
app.py
CHANGED
|
@@ -32,11 +32,15 @@ class BasicAgent:
|
|
| 32 |
|
| 33 |
# Create the model
|
| 34 |
self.model = InferenceClientModel()
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
# Create the agent with tools
|
| 37 |
self.agent = CodeAgent(
|
| 38 |
tools=[self.search_tool],
|
| 39 |
model=self.model,
|
|
|
|
| 40 |
max_steps=5 # Limit reasoning steps
|
| 41 |
)
|
| 42 |
|
|
|
|
| 32 |
|
| 33 |
# Create the model
|
| 34 |
self.model = InferenceClientModel()
|
| 35 |
+
|
| 36 |
+
# Define your system prompt
|
| 37 |
+
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."""
|
| 38 |
|
| 39 |
# Create the agent with tools
|
| 40 |
self.agent = CodeAgent(
|
| 41 |
tools=[self.search_tool],
|
| 42 |
model=self.model,
|
| 43 |
+
system_prompt=self.system_prompt,
|
| 44 |
max_steps=5 # Limit reasoning steps
|
| 45 |
)
|
| 46 |
|