AnishKumbhar commited on
Commit
fee42aa
·
1 Parent(s): c525d91

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -6,6 +6,8 @@ pipeline = pipeline(task="conversational", model="lmsys/fastchat-t5-3b-v1.0")
6
  st.title("Conversational AI with FastChat")
7
 
8
  query = st.text_input("Enter your query:")
 
9
  response = pipeline(query)
 
10
  st.subheader("Response:")
11
  st.write(response["text"])
 
6
  st.title("Conversational AI with FastChat")
7
 
8
  query = st.text_input("Enter your query:")
9
+
10
  response = pipeline(query)
11
+
12
  st.subheader("Response:")
13
  st.write(response["text"])