eswardivi commited on
Commit
c1dab72
Β·
verified Β·
1 Parent(s): 89ed0fe

Upload 2 files

Browse files
Files changed (2) hide show
  1. Logo.png +0 -0
  2. app.py +20 -1
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="AI Podcast", layout="wide")
 
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):