heysho commited on
Commit
609f9db
1 Parent(s): 769cd5a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -80,4 +80,8 @@ def main():
80
  reply = st.text_input("What you want to say: (e.g., I am available after 2 PM.)", key="reply")
81
  if st.button("Generate the Reply"):
82
  result = chain.stream({"sender": sender, "subject": subject, "message": message, "reply": reply})
83
- st.write(result)
 
 
 
 
 
80
  reply = st.text_input("What you want to say: (e.g., I am available after 2 PM.)", key="reply")
81
  if st.button("Generate the Reply"):
82
  result = chain.stream({"sender": sender, "subject": subject, "message": message, "reply": reply})
83
+ st.write(result)
84
+
85
+
86
+ if __name__ == '__main__':
87
+ main()