Gaykar commited on
Commit
a2f3cd3
·
1 Parent(s): e88ffe6
Files changed (2) hide show
  1. app/agents/agents.py +2 -2
  2. app/graph.py +1 -1
app/agents/agents.py CHANGED
@@ -43,7 +43,7 @@ jd_agent=jd_agent.with_structured_output(
43
 
44
 
45
  gap_analysis_agent=ChatGroq(
46
- model="openai/gpt-oss-120b",
47
  temperature=0.2,
48
  )
49
 
@@ -56,7 +56,7 @@ gap_analysis_agent=gap_analysis_agent.with_structured_output(
56
  )
57
 
58
  base_llm = ChatGroq(
59
- model="openai/gpt-oss-20b",
60
  temperature=0.1,
61
  )
62
 
 
43
 
44
 
45
  gap_analysis_agent=ChatGroq(
46
+ model="openai/gpt-oss-20b",
47
  temperature=0.2,
48
  )
49
 
 
56
  )
57
 
58
  base_llm = ChatGroq(
59
+ model="qwen/qwen3-32b",
60
  temperature=0.1,
61
  )
62
 
app/graph.py CHANGED
@@ -44,7 +44,7 @@ builder.add_conditional_edges(
44
  builder.add_edge("tools", "roadmap_planning_agent")
45
 
46
  # 6. Compile
47
- graph = builder.compile()
48
 
49
 
50
  # try:
 
44
  builder.add_edge("tools", "roadmap_planning_agent")
45
 
46
  # 6. Compile
47
+ graph = builder.compile(debug=True)
48
 
49
 
50
  # try: