Update app.py
Browse files
app.py
CHANGED
@@ -17,6 +17,7 @@ from langchain_core.messages import BaseMessage, HumanMessage
|
|
17 |
from langchain_anthropic import ChatAnthropic
|
18 |
from langchain_community.tools import ShellTool
|
19 |
from langgraph.prebuilt import create_react_agent
|
|
|
20 |
|
21 |
st.markdown("""
|
22 |
<style>
|
@@ -247,7 +248,6 @@ else:
|
|
247 |
Given this context, provide direct answers to user questions based on the current state of the repository.
|
248 |
Take a deep breath and think through the question step by step before answering:"""
|
249 |
|
250 |
-
from langgraph.checkpoint import MemorySaver
|
251 |
|
252 |
memory = MemorySaver()
|
253 |
|
|
|
17 |
from langchain_anthropic import ChatAnthropic
|
18 |
from langchain_community.tools import ShellTool
|
19 |
from langgraph.prebuilt import create_react_agent
|
20 |
+
from langgraph.checkpoint.memory import MemorySaver
|
21 |
|
22 |
st.markdown("""
|
23 |
<style>
|
|
|
248 |
Given this context, provide direct answers to user questions based on the current state of the repository.
|
249 |
Take a deep breath and think through the question step by step before answering:"""
|
250 |
|
|
|
251 |
|
252 |
memory = MemorySaver()
|
253 |
|