rtamaki commited on
Commit
8002ffb
·
verified ·
1 Parent(s): a614e3d

removing ToolCallingAgent to not have system prompt, as it was given an error saying that doesn;t exists

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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
- "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?")
 
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?")