Sidreds06 commited on
Commit
f5dbfdf
·
1 Parent(s): a63133f

Adjusted model uses

Browse files
Files changed (1) hide show
  1. backend/llm_utils.py +2 -2
backend/llm_utils.py CHANGED
@@ -169,14 +169,14 @@ async def get_reply(agent_type, history, user_data=None, user_id=None):
169
  lc_messages.append(AIMessage(content=h["content"]))
170
 
171
  model_router = {
172
- "physical": deepseek_with_tools,
173
  "mental": gpt4o_with_tools,
174
  "spiritual": gpt4o_with_tools,
175
  "vocational": gpt4o_with_tools,
176
  "environmental": deepseek_with_tools,
177
  "financial": gpt4o_with_tools,
178
  "social": gpt4o_with_tools,
179
- "intellectual": gpt4o_with_tools,
180
  "main": gpt4o_mini_with_tools,
181
  }
182
  model = model_router.get(agent_type, gpt4o_with_tools)
 
169
  lc_messages.append(AIMessage(content=h["content"]))
170
 
171
  model_router = {
172
+ "physical": gpt4o_with_tools,
173
  "mental": gpt4o_with_tools,
174
  "spiritual": gpt4o_with_tools,
175
  "vocational": gpt4o_with_tools,
176
  "environmental": deepseek_with_tools,
177
  "financial": gpt4o_with_tools,
178
  "social": gpt4o_with_tools,
179
+ "intellectual": deepseek_with_tools,
180
  "main": gpt4o_mini_with_tools,
181
  }
182
  model = model_router.get(agent_type, gpt4o_with_tools)