AksharaSachin commited on
Commit
5cb5f27
·
verified ·
1 Parent(s): 9d03e14

Update agent.py

Browse files
Files changed (1) hide show
  1. agent.py +1 -1
agent.py CHANGED
@@ -73,7 +73,7 @@ def build_agent():
73
 
74
  def call_model(state: MessagesState):
75
  """Call the LLM with the given state."""
76
- messages = [system_prompt] + state["messages"]
77
  response = llm.invoke(messages)
78
  return {"messages" : response}
79
 
 
73
 
74
  def call_model(state: MessagesState):
75
  """Call the LLM with the given state."""
76
+ messages = state["messages"]
77
  response = llm.invoke(messages)
78
  return {"messages" : response}
79