heysho commited on
Commit
9597c1b
1 Parent(s): c407f67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -83,7 +83,7 @@ def main():
83
  subject = st.text_input("Email Subject (e.g., About scheduling a meeting)", key="subject")
84
  message = st.text_area("Content of the recipient's email: (e.g., I would like to adjust the time for tomorrow's meeting, are you available in the afternoon?)", key="message")
85
  reply = st.text_input("What you want to say: (e.g., I am available after 2 PM.)", key="reply")
86
- if st.button("返信を生成する"):
87
  result = chain.stream({"sender": sender, "subject": subject, "message": message, "reply": reply})
88
  st.write(result)
89
 
 
83
  subject = st.text_input("Email Subject (e.g., About scheduling a meeting)", key="subject")
84
  message = st.text_area("Content of the recipient's email: (e.g., I would like to adjust the time for tomorrow's meeting, are you available in the afternoon?)", key="message")
85
  reply = st.text_input("What you want to say: (e.g., I am available after 2 PM.)", key="reply")
86
+ if st.button("Generate the Reply"):
87
  result = chain.stream({"sender": sender, "subject": subject, "message": message, "reply": reply})
88
  st.write(result)
89