removing ToolCallingAgent to not have system prompt, as it was given an error saying that doesn;t exists
Browse files
app.py
CHANGED
@@ -55,11 +55,11 @@ from smolagents import InferenceClientModel, ToolCallingAgent
|
|
55 |
agent = ToolCallingAgent(
|
56 |
tools=[get_weather, get_current_city, get_vogue, get_wardrobe],
|
57 |
model=InferenceClientModel(),
|
58 |
-
instructions=(
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
)
|
63 |
)
|
64 |
|
65 |
# agent.run("What should I wear today as a hot day in Paris?")
|
|
|
55 |
agent = ToolCallingAgent(
|
56 |
tools=[get_weather, get_current_city, get_vogue, get_wardrobe],
|
57 |
model=InferenceClientModel(),
|
58 |
+
# instructions=(
|
59 |
+
# "You are a clothing consultant."
|
60 |
+
# "You should recommend looks for people to wear based on what is on vogue and only on the clothes people already have in their wardrobe and the occasion (e.g. a summer party, work, a client visit)."
|
61 |
+
# "Only give suggestions based on clothes people have. If, and only if, there is nothing that matches the occasion, then say so and gives a suggestion"
|
62 |
+
# )
|
63 |
)
|
64 |
|
65 |
# agent.run("What should I wear today as a hot day in Paris?")
|