philincloud commited on
Commit
5cce4fd
·
verified ·
1 Parent(s): 247a0af

Update langgraph_agent.py

Browse files
Files changed (1) hide show
  1. langgraph_agent.py +1 -1
langgraph_agent.py CHANGED
@@ -86,7 +86,7 @@ sys_msg = SystemMessage(content=system_prompt)
86
  def build_graph(provider: str = "gemini"):
87
  """Build the LangGraph agent with chosen LLM (default: Gemini)."""
88
  if provider == "gemini":
89
- lllm = ChatGoogleGenerativeAI(
90
  model= "gemini-2.5-pro-preview-05-06",
91
  temperature=1.0,
92
  max_retries=2,
 
86
  def build_graph(provider: str = "gemini"):
87
  """Build the LangGraph agent with chosen LLM (default: Gemini)."""
88
  if provider == "gemini":
89
+ llm = ChatGoogleGenerativeAI(
90
  model= "gemini-2.5-pro-preview-05-06",
91
  temperature=1.0,
92
  max_retries=2,