Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -250,7 +250,7 @@ def highlight_differences(original: str, edited: str) -> str:
|
|
250 |
|
251 |
def main():
|
252 |
st.set_page_config(
|
253 |
-
page_title="MyPod
|
254 |
layout="centered"
|
255 |
)
|
256 |
|
@@ -258,7 +258,7 @@ def main():
|
|
258 |
with logo_col:
|
259 |
st.image("logomypod.jpg", width=60)
|
260 |
with title_col:
|
261 |
-
st.markdown("## MyPod
|
262 |
|
263 |
st.markdown(
|
264 |
"Welcome to **MyPod**, your go-to AI-powered podcast generator! 🎉\n\n"
|
@@ -291,10 +291,10 @@ def main():
|
|
291 |
st.markdown("### Customize Your Podcast (New Features)")
|
292 |
|
293 |
with st.expander("Set Host & Guest Names/Descriptions (Optional)"):
|
294 |
-
host_name = st.text_input("Host Name (leave blank for 'Jane')")
|
295 |
-
host_desc = st.text_input("Host Description (Optional)")
|
296 |
-
guest_name = st.text_input("Guest Name (leave blank for 'John')")
|
297 |
-
guest_desc = st.text_input("Guest Description (Optional)")
|
298 |
|
299 |
user_specs = st.text_area("Any special instructions or prompts for the script? (Optional)", "")
|
300 |
sponsor_content = st.text_area("Sponsored Content / Ad (Optional)", "")
|
|
|
250 |
|
251 |
def main():
|
252 |
st.set_page_config(
|
253 |
+
page_title="MyPod v2: AI-based Podcast Generator",
|
254 |
layout="centered"
|
255 |
)
|
256 |
|
|
|
258 |
with logo_col:
|
259 |
st.image("logomypod.jpg", width=60)
|
260 |
with title_col:
|
261 |
+
st.markdown("## MyPod v2: AI powered Podcast Generator")
|
262 |
|
263 |
st.markdown(
|
264 |
"Welcome to **MyPod**, your go-to AI-powered podcast generator! 🎉\n\n"
|
|
|
291 |
st.markdown("### Customize Your Podcast (New Features)")
|
292 |
|
293 |
with st.expander("Set Host & Guest Names/Descriptions (Optional)"):
|
294 |
+
host_name = st.text_input("Female Host Name (leave blank for 'Jane')")
|
295 |
+
host_desc = st.text_input("Female Host Description (Optional)")
|
296 |
+
guest_name = st.text_input("Male Guest Name (leave blank for 'John')")
|
297 |
+
guest_desc = st.text_input("Male Guest Description (Optional)")
|
298 |
|
299 |
user_specs = st.text_area("Any special instructions or prompts for the script? (Optional)", "")
|
300 |
sponsor_content = st.text_area("Sponsored Content / Ad (Optional)", "")
|