akra35567 commited on
Commit
ecf0ccc
·
verified ·
1 Parent(s): 28413c0

Update modules/api.py

Browse files
Files changed (1) hide show
  1. modules/api.py +3 -3
modules/api.py CHANGED
@@ -203,11 +203,11 @@ class LLMManager:
203
  self.providers = []
204
 
205
  # ORDEM DE PRIORIDADE DAS APIs (Fase 5: Mistral > Local > Outros)
206
-
207
- if self.mistral_client:
208
- self.providers.append('mistral')
209
  if self.openrouter_client:
210
  self.providers.append('openrouter')
 
 
 
211
  if self.llama_llm is not None and getattr(self.llama_llm, 'is_available', lambda: False)():
212
  self.providers.append('llama')
213
 
 
203
  self.providers = []
204
 
205
  # ORDEM DE PRIORIDADE DAS APIs (Fase 5: Mistral > Local > Outros)
 
 
 
206
  if self.openrouter_client:
207
  self.providers.append('openrouter')
208
+ if self.mistral_client:
209
+ self.providers.append('mistral')
210
+
211
  if self.llama_llm is not None and getattr(self.llama_llm, 'is_available', lambda: False)():
212
  self.providers.append('llama')
213