Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ st.set_page_config(page_title="PitchPal: Your Friendly Copy Assistant",
|
|
64 |
|
65 |
|
66 |
st.markdown("<h1 style='text-align: center'>PitchPal</h1>", unsafe_allow_html=True)
|
67 |
-
st.markdown("<h3 style='text-align: center'>Your
|
68 |
st.markdown("<p style='text-align: right'>By <a href='https://entzyeung.github.io/portfolio/index.html'>Lorentz Yeung</a></p>", unsafe_allow_html=True)
|
69 |
|
70 |
|
@@ -93,6 +93,4 @@ numberOfWords = 40 # the new model doesn't support this.
|
|
93 |
submit = st.button("Generate Your Sales Copy")
|
94 |
|
95 |
if submit:
|
96 |
-
st.write(getLLMResponse(form_input,tasktype_option,age_option))
|
97 |
-
|
98 |
-
|
|
|
64 |
|
65 |
|
66 |
st.markdown("<h1 style='text-align: center'>PitchPal</h1>", unsafe_allow_html=True)
|
67 |
+
st.markdown("<h3 style='text-align: center'>Your Efficient Sales Copy Assistant</h2>", unsafe_allow_html=True)
|
68 |
st.markdown("<p style='text-align: right'>By <a href='https://entzyeung.github.io/portfolio/index.html'>Lorentz Yeung</a></p>", unsafe_allow_html=True)
|
69 |
|
70 |
|
|
|
93 |
submit = st.button("Generate Your Sales Copy")
|
94 |
|
95 |
if submit:
|
96 |
+
st.write(getLLMResponse(form_input,tasktype_option,age_option))
|
|
|
|