Zelyanoth commited on
Commit
87e159a
·
verified ·
1 Parent(s): bc01f09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -170,7 +170,7 @@ If earlier context is needed, ask the user to clarify.
170
  raise ValueError("Mistral API key is required")
171
 
172
  self.model = ChatMistralAI(
173
- model="mistral-small-latest",
174
  api_key=mistral_key,
175
 
176
  )
@@ -193,7 +193,7 @@ If earlier context is needed, ask the user to clarify.
193
 
194
  # Load tools
195
  tools = await load_mcp_tools(self.session)
196
- tools.append(SleepTool(description="Wait 4 seconds between two calls"))
197
  logger.info(f"📥 Loaded {len(tools)} tools")
198
  self.available_tools = {t.name: t for t in tools}
199
 
 
170
  raise ValueError("Mistral API key is required")
171
 
172
  self.model = ChatMistralAI(
173
+ model="devstral-small-latest",
174
  api_key=mistral_key,
175
 
176
  )
 
193
 
194
  # Load tools
195
  tools = await load_mcp_tools(self.session)
196
+ tools.append(SleepTool(description="Wait 2 seconds between two calls"))
197
  logger.info(f"📥 Loaded {len(tools)} tools")
198
  self.available_tools = {t.name: t for t in tools}
199