pvanand commited on
Commit
f61d58e
·
verified ·
1 Parent(s): b1975e0

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +19 -16
main.py CHANGED
@@ -104,22 +104,25 @@ prompt = ChatPromptTemplate.from_messages([
104
 
105
  def state_modifier(state) -> list[BaseMessage]:
106
  collection_files = "None"
107
- # Format the prompt with the current state
108
- formatted_prompt = prompt.invoke({
109
- "collection_files": collection_files,
110
- "messages": state["messages"]
111
- })
112
-
113
- # Trim the messages
114
- return trim_messages(
115
- formatted_prompt,
116
- token_counter=len,
117
- max_tokens=16000,
118
- strategy="last",
119
- start_on="human",
120
- include_system=True,
121
- allow_partial=False,
122
- )
 
 
 
123
 
124
  # Create the agent with the Python execution tool
125
  agent = create_react_agent(
 
104
 
105
  def state_modifier(state) -> list[BaseMessage]:
106
  collection_files = "None"
107
+ try:
108
+ formatted_prompt = prompt.invoke({
109
+ "collection_files": collection_files,
110
+ "messages": state["messages"]
111
+ })
112
+
113
+ return trim_messages(
114
+ formatted_prompt,
115
+ token_counter=len,
116
+ max_tokens=16000,
117
+ strategy="last",
118
+ start_on="human",
119
+ include_system=True,
120
+ allow_partial=False,
121
+ )
122
+ print(state["messages"])
123
+ except Exception as e:
124
+ print(f"Error in state modifier: {str(e)}")
125
+ return state["messages"]
126
 
127
  # Create the agent with the Python execution tool
128
  agent = create_react_agent(