Spaces:
Runtime error
Runtime error
Gonzalo Lope commited on
Commit ·
e80ef77
1
Parent(s): 03dd763
removed system prompt
Browse files- smolagents_test_new.py +1 -2
smolagents_test_new.py
CHANGED
|
@@ -4,9 +4,8 @@ from smolagents import CodeAgent, InferenceClientModel, DuckDuckGoSearchTool
|
|
| 4 |
|
| 5 |
|
| 6 |
|
| 7 |
-
sys_prompt = open("sys_prompt.txt", "r").read()
|
| 8 |
|
| 9 |
-
agent = CodeAgent(tools=[DuckDuckGoSearchTool], model=InferenceClientModel()
|
| 10 |
|
| 11 |
|
| 12 |
if __name__ == "__main__":
|
|
|
|
| 4 |
|
| 5 |
|
| 6 |
|
|
|
|
| 7 |
|
| 8 |
+
agent = CodeAgent(tools=[DuckDuckGoSearchTool], model=InferenceClientModel())
|
| 9 |
|
| 10 |
|
| 11 |
if __name__ == "__main__":
|