Spaces:
Running
Running
Upload 2 files
Browse files
Logo.png
ADDED
![]() |
app.py
CHANGED
@@ -162,9 +162,28 @@ async def generate_podcast():
|
|
162 |
|
163 |
asyncio.run(generate_podcast())
|
164 |
|
165 |
-
st.set_page_config(page_title="
|
|
|
166 |
st.title("ποΈ Today's Daily Papers Podcast")
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
conversation_data = load_conversation()
|
169 |
show_notes = "**No show notes available.**"
|
170 |
if os.path.exists(SHOW_NOTES_FILE):
|
|
|
162 |
|
163 |
asyncio.run(generate_podcast())
|
164 |
|
165 |
+
st.set_page_config(page_title="Daily Papers Podcast", page_icon="ποΈ", layout="wide")
|
166 |
+
|
167 |
st.title("ποΈ Today's Daily Papers Podcast")
|
168 |
+
st.subheader("Your Daily AI Research Insights - Engaging & Informative")
|
169 |
+
|
170 |
+
col1, col2 = st.columns([0.2, 0.8])
|
171 |
+
|
172 |
+
with col1:
|
173 |
+
st.image("Logo.png", width=120) # Ensure logo.png is in the working directory
|
174 |
|
175 |
+
with col2:
|
176 |
+
st.markdown(
|
177 |
+
"""
|
178 |
+
**Powered by:**
|
179 |
+
π [HF Daily Papers Feeds](https://github.com/404missinglink/HF-Daily-Papers-Feeds)
|
180 |
+
π [TLDR Takara AI](https://tldr.takara.ai/)
|
181 |
+
π [Takara AI Papers Feed](http://papers.takara.ai/api/feed)
|
182 |
+
"""
|
183 |
+
)
|
184 |
+
|
185 |
+
# Styling Divider
|
186 |
+
st.markdown("---")
|
187 |
conversation_data = load_conversation()
|
188 |
show_notes = "**No show notes available.**"
|
189 |
if os.path.exists(SHOW_NOTES_FILE):
|