Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from langchain.agents import ConversationalChatAgent, AgentExecutor
|
2 |
+
from langchain.memory import ConversationBufferMemory
|
3 |
+
from langchain_community.callbacks import StreamlitCallbackHandler
|
4 |
+
from langchain_community.chat_message_histories import StreamlitChatMessageHistory
|
5 |
+
from langchain_community.tools import DuckDuckGoSearchRun
|
6 |
+
from langchain_core.runnables import RunnableConfig
|
7 |
+
from langchain_openai import ChatOpenAI
|
8 |
+
|
9 |
+
import streamlit as st
|
10 |
+
|
11 |
+
st.set_page_config(page_title="Ask Your TA", page_icon="π§βπ¬")
|
12 |
+
st.title("βπ¬ Ask Your TA")
|
13 |
+
|
14 |
+
openai_api_key = st.sidebar.text_input("OpenAI API Key", type="password")
|
15 |
+
|
16 |
+
msgs = StreamlitChatMessageHistory()
|
17 |
+
memory = ConversationBufferMemory(
|
18 |
+
chat_memory=msgs, return_messages=True, memory_key="chat_history", output_key="output"
|
19 |
+
)
|
20 |
+
if len(msgs.messages) == 0 or st.sidebar.button("Reset chat history"):
|
21 |
+
msgs.clear()
|
22 |
+
msgs.add_ai_message("How can I help you?")
|
23 |
+
st.session_state.steps = {}
|
24 |
+
|
25 |
+
avatars = {"human": "user", "ai": "assistant"}
|
26 |
+
for idx, msg in enumerate(msgs.messages):
|
27 |
+
with st.chat_message(avatars[msg.type]):
|
28 |
+
# Render intermediate steps if any were saved
|
29 |
+
for step in st.session_state.steps.get(str(idx), []):
|
30 |
+
if step[0].tool == "_Exception":
|
31 |
+
continue
|
32 |
+
with st.status(f"**{step[0].tool}**: {step[0].tool_input}", state="complete"):
|
33 |
+
st.write(step[0].log)
|
34 |
+
st.write(step[1])
|
35 |
+
st.write(msg.content)
|
36 |
+
|
37 |
+
if prompt := st.chat_input(placeholder="Who won the Women's U.S. Open in 2018?"):
|
38 |
+
st.chat_message("user").write(prompt)
|
39 |
+
|
40 |
+
if not openai_api_key:
|
41 |
+
st.info("Please add your OpenAI API key to continue.")
|
42 |
+
st.stop()
|
43 |
+
|
44 |
+
llm = ChatOpenAI(model_name="gpt-3.5-turbo", openai_api_key=openai_api_key, streaming=True)
|
45 |
+
tools = [DuckDuckGoSearchRun(name="Search")]
|
46 |
+
chat_agent = ConversationalChatAgent.from_llm_and_tools(llm=llm, tools=tools)
|
47 |
+
executor = AgentExecutor.from_agent_and_tools(
|
48 |
+
agent=chat_agent,
|
49 |
+
tools=tools,
|
50 |
+
memory=memory,
|
51 |
+
return_intermediate_steps=True,
|
52 |
+
handle_parsing_errors=True,
|
53 |
+
)
|
54 |
+
with st.chat_message("assistant"):
|
55 |
+
st_cb = StreamlitCallbackHandler(st.container(), expand_new_thoughts=False)
|
56 |
+
cfg = RunnableConfig()
|
57 |
+
cfg["callbacks"] = [st_cb]
|
58 |
+
response = executor.invoke(prompt, cfg)
|
59 |
+
st.write(response["output"])
|
60 |
+
st.session_state.steps[str(len(msgs.messages) - 1)] = response["intermediate_steps"]
|