Spaces:
Sleeping
Sleeping
venkat charan
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -11,6 +11,8 @@ prompt = ChatPromptTemplate.from_messages([
|
|
| 11 |
("human", "{input}")
|
| 12 |
])
|
| 13 |
|
|
|
|
|
|
|
| 14 |
# Streamlit interface
|
| 15 |
st.title("Email Reply Generator")
|
| 16 |
st.write("Enter the email text you want a reply for:")
|
|
|
|
| 11 |
("human", "{input}")
|
| 12 |
])
|
| 13 |
|
| 14 |
+
chain = prompt | llm
|
| 15 |
+
|
| 16 |
# Streamlit interface
|
| 17 |
st.title("Email Reply Generator")
|
| 18 |
st.write("Enter the email text you want a reply for:")
|