Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 17,544 Bytes
5ddf8c4 ee45388 c6df19f ee45388 c6df19f ee45388 c6df19f ee45388 5ddf8c4 ee45388 3d49bb6 ee45388 c6df19f ee45388 c6df19f ee45388 5ddf8c4 ee45388 5ddf8c4 c6df19f ee45388 c6df19f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
return sorted_groups
def display_file_manager_sidebar(groups_sorted):
st.sidebar.title("🎵 Audio & Docs Manager")
all_md = []
all_mp3 = []
all_wav = []
for _, files in groups_sorted:
for f in files:
if f.endswith(".md"):
all_md.append(f)
elif f.endswith(".mp3"):
all_mp3.append(f)
elif f.endswith(".wav"):
all_wav.append(f)
col1, col2, col3, col4 = st.sidebar.columns(4)
with col1:
if st.button("🗑 DelMD"):
for f in all_md:
os.remove(f)
st.session_state.should_rerun = True
with col2:
if st.button("🗑 DelMP3"):
for f in all_mp3:
os.remove(f)
st.session_state.should_rerun = True
with col3:
if st.button("🗑 DelWAV"):
for f in all_wav:
os.remove(f)
st.session_state.should_rerun = True
with col4:
if st.button("⬇️ ZipAll"):
zip_name = create_zip_of_files(all_md, all_mp3, all_wav, st.session_state.get('last_query', ''))
if zip_name:
st.sidebar.markdown(get_download_link(zip_name, "zip"), unsafe_allow_html=True)
for group_name, files in groups_sorted:
if group_name == 'Other':
group_label = 'Other Files'
else:
try:
timestamp_dt = datetime.strptime(group_name, "%m_%d_%y_%I_%M_%p")
group_label = timestamp_dt.strftime("%b %d, %Y %I:%M %p")
except ValueError:
group_label = group_name
with st.sidebar.expander(f"📁 {group_label} ({len(files)})", expanded=True):
c1, c2 = st.columns(2)
with c1:
if st.button("👀 View", key=f"view_group_{group_name}"):
st.session_state.viewing_prefix = group_name
with c2:
if st.button("🗑 Del", key=f"del_group_{group_name}"):
for f in files:
os.remove(f)
st.success(f"Deleted group {group_label}!")
st.session_state.should_rerun = True
for f in files:
fname = os.path.basename(f)
ext = os.path.splitext(fname)[1].lower()
emoji = FILE_EMOJIS.get(ext.strip('.'), '')
mtime = os.path.getmtime(f)
ctime = datetime.fromtimestamp(mtime).strftime("%I:%M:%S %p")
st.write(f"{emoji} **{fname}** - {ctime}")
def create_zip_of_files(md_files, mp3_files, wav_files, input_question):
md_files = [f for f in md_files if os.path.basename(f).lower() != 'readme.md']
all_files = md_files + mp3_files + wav_files
if not all_files:
return None
all_content = []
for f in all_files:
if f.endswith('.md'):
with open(f, 'r', encoding='utf-8') as file:
all_content.append(file.read())
elif f.endswith('.mp3') or f.endswith('.wav'):
basename = os.path.splitext(os.path.basename(f))[0]
words = basename.replace('_', ' ')
all_content.append(words)
all_content.append(input_question)
combined_content = " ".join(all_content)
info_terms = get_high_info_terms(combined_content, top_n=10)
timestamp = format_timestamp_prefix()
name_text = '_'.join(term.replace(' ', '-') for term in info_terms[:10])
zip_name = f"{timestamp}_{name_text}.zip"
with zipfile.ZipFile(zip_name, 'w') as z:
for f in all_files:
z.write(f)
return zip_name
def get_marquee_settings():
st.sidebar.markdown("### 🎯 Marquee Settings")
cols = st.sidebar.columns(2)
with cols[0]:
bg_color = st.color_picker("🎨 Background", "#1E1E1E", key="bg_color_picker")
text_color = st.color_picker("✍️ Text", "#FFFFFF", key="text_color_picker")
with cols[1]:
font_size = st.slider("📏 Size", 10, 24, 14, key="font_size_slider")
duration = st.slider("⏱️ Speed", 1, 20, 10, key="duration_slider")
return {
"background": bg_color,
"color": text_color,
"font-size": f"{font_size}px",
"animationDuration": f"{duration}s",
"width": "100%",
"lineHeight": "35px"
}
def display_marquee(text, settings, key_suffix=""):
truncated_text = text[:280] + "..." if len(text) > 280 else text
streamlit_marquee(
content=truncated_text,
**settings,
key=f"marquee_{key_suffix}"
)
st.write("")
def parse_arxiv_refs(ref_text: str):
if not ref_text:
return []
results = []
current_paper = {}
lines = ref_text.split('\n')
for i, line in enumerate(lines):
if line.count('|') == 2:
if current_paper:
results.append(current_paper)
if len(results) >= 20:
break
try:
header_parts = line.strip('* ').split('|')
date = header_parts[0].strip()
title = header_parts[1].strip()
url_match = re.search(r'(https://arxiv.org/\S+)', line)
url = url_match.group(1) if url_match else f"paper_{len(results)}"
current_paper = {
'date': date,
'title': title,
'url': url,
'authors': '',
'summary': '',
'content_start': i + 1
}
except Exception as e:
st.warning(f"Error parsing paper header: {str(e)}")
current_paper = {}
continue
elif current_paper:
if not current_paper['authors']:
current_paper['authors'] = line.strip('* ')
else:
if current_paper['summary']:
current_paper['summary'] += ' ' + line.strip()
else:
current_paper['summary'] = line.strip()
if current_paper:
results.append(current_paper)
return results[:20]
def process_paper_content(paper):
marquee_text = f"📄 {paper['title']} | 👤 {paper['authors'][:100]} | 📝 {paper['summary'][:100]}"
audio_text = f"{paper['title']} by {paper['authors']}. {paper['summary']}"
return marquee_text, audio_text
def create_paper_audio_files(papers, input_question):
for paper in papers:
try:
marquee_text, audio_text = process_paper_content(paper)
audio_text = clean_for_speech(audio_text)
file_format = st.session_state['audio_format']
audio_file = speak_with_edge_tts(audio_text,
voice=st.session_state['tts_voice'],
file_format=file_format)
paper['full_audio'] = audio_file
st.write(f"### {FILE_EMOJIS.get(file_format, '')} {os.path.basename(audio_file)}")
play_and_download_audio(audio_file, file_type=file_format)
paper['marquee_text'] = marquee_text
except Exception as e:
st.warning(f"Error processing paper {paper['title']}: {str(e)}")
paper['full_audio'] = None
paper['marquee_text'] = None
def display_papers(papers, marquee_settings):
st.write("## Research Papers")
papercount = 0
for paper in papers:
papercount += 1
if papercount <= 20:
if paper.get('marquee_text'):
display_marquee(paper['marquee_text'],
marquee_settings,
key_suffix=f"paper_{papercount}")
with st.expander(f"{papercount}. 📄 {paper['title']}", expanded=True):
st.markdown(f"**{paper['date']} | {paper['title']} | ⬇️**")
st.markdown(f"*{paper['authors']}*")
st.markdown(paper['summary'])
if paper.get('full_audio'):
st.write("📚 Paper Audio")
file_ext = os.path.splitext(paper['full_audio'])[1].lower().strip('.')
if file_ext in ['mp3', 'wav']:
st.audio(paper['full_audio'])
def main():
marquee_settings = get_marquee_settings()
display_marquee(st.session_state['marquee_content'],
{**marquee_settings, "font-size": "28px", "lineHeight": "50px"},
key_suffix="welcome")
groups_sorted = load_files_for_sidebar()
if st.session_state.viewing_prefix:
for group_name, files in groups_sorted:
if group_name == st.session_state.viewing_prefix:
for f in files:
if f.endswith('.md'):
with open(f, 'r', encoding='utf-8') as file:
st.session_state['marquee_content'] = file.read()[:280]
st.sidebar.markdown("### 🎤 Voice Settings")
selected_voice = st.sidebar.selectbox(
"Select TTS Voice:",
options=EDGE_TTS_VOICES,
index=EDGE_TTS_VOICES.index(st.session_state['tts_voice'])
)
st.sidebar.markdown("### 🔊 Audio Format")
selected_format = st.sidebar.radio(
"Choose Audio Format:",
options=["MP3", "WAV"],
index=0
)
if selected_voice != st.session_state['tts_voice']:
st.session_state['tts_voice'] = selected_voice
st.rerun()
if selected_format.lower() != st.session_state['audio_format']:
st.session_state['audio_format'] = selected_format.lower()
st.rerun()
tab_main = st.radio("Action:", ["🎤 Voice", "📸 Media", "🔍 ArXiv", "📝 Editor"],
horizontal=True)
mycomponent = components.declare_component("mycomponent", path="mycomponent")
val = mycomponent(my_input_value="Hello")
if val:
val_stripped = val.replace('\\n', ' ')
edited_input = st.text_area("✏️ Edit Input:", value=val_stripped, height=100)
run_option = st.selectbox("Model:", ["Arxiv", "GPT-4o", "Claude-3.5"])
col1, col2 = st.columns(2)
with col1:
autorun = st.checkbox("⚙ AutoRun", value=True)
with col2:
full_audio = st.checkbox("📚FullAudio", value=False)
input_changed = (val != st.session_state.old_val)
if autorun and input_changed:
st.session_state.old_val = val
st.session_state.last_query = edited_input
result = perform_ai_lookup(edited_input, vocal_summary=True, extended_refs=False,
titles_summary=True, full_audio=full_audio,
marquee_settings=marquee_settings)
else:
if st.button("▶ Run"):
st.session_state.old_val = val
st.session_state.last_query = edited_input
result = perform_ai_lookup(edited_input, vocal_summary=True, extended_refs=False,
titles_summary=True, full_audio=full_audio,
marquee_settings=marquee_settings)
if tab_main == "🔍 ArXiv":
st.subheader("🔍 Query ArXiv")
q = st.text_input("🔍 Query:")
st.markdown("### 🎛 Options")
vocal_summary = st.checkbox("🎙ShortAudio", value=True)
extended_refs = st.checkbox("📜LongRefs", value=False)
titles_summary = st.checkbox("🔖TitlesOnly", value=True)
full_audio = st.checkbox("📚FullAudio", value=False)
full_transcript = st.checkbox("🧾FullTranscript", value=False)
if q and st.button("🔍Run"):
st.session_state.last_query = q
result = perform_ai_lookup(q, vocal_summary=vocal_summary, extended_refs=extended_refs,
titles_summary=titles_summary, full_audio=full_audio,
marquee_settings=marquee_settings)
elif tab_main == "🎤 Voice":
st.subheader("🎤 Voice Input")
user_text = st.text_area("💬 Message:", height=100)
user_text = user_text.strip().replace('\n', ' ')
if st.button("📨 Send"):
process_voice_input(user_text, marquee_settings=marquee_settings)
st.subheader("📜 Chat History")for c in st.session_state.chat_history:
st.write("**You:**", c["user"])
st.write("**Response:**", c["claude"])
elif tab_main == "📸 Media":
st.header("📸 Images & 🎥 Videos")
tabs = st.tabs(["🖼 Images", "🎥 Video"])
with tabs[0]:
imgs = glob.glob("*.png") + glob.glob("*.jpg")
if imgs:
c = st.slider("Cols", 1, 5, 3)
cols = st.columns(c)
for i, f in enumerate(imgs):
with cols[i % c]:
st.image(Image.open(f), use_container_width=True)
if st.button(f"👀 Analyze {os.path.basename(f)}", key=f"analyze_{f}"):
response = openai_client.chat.completions.create(
model=st.session_state["openai_model"],
messages=[
{"role": "system", "content": "Analyze the image content."},
{"role": "user", "content": [
{"type": "image_url",
"image_url": {"url": f"data:image/jpeg;base64,{base64.b64encode(open(f, 'rb').read()).decode()}"}}
]}
]
)
st.markdown(response.choices[0].message.content)
else:
st.write("No images found.")
with tabs[1]:
vids = glob.glob("*.mp4")
if vids:
for v in vids:
with st.expander(f"🎥 {os.path.basename(v)}"):
st.video(v)
if st.button(f"Analyze {os.path.basename(v)}", key=f"analyze_{v}"):
frames = process_video(v)
response = openai_client.chat.completions.create(
model=st.session_state["openai_model"],
messages=[
{"role": "system", "content": "Analyze video frames."},
{"role": "user", "content": [
{"type": "image_url",
"image_url": {"url": f"data:image/jpeg;base64,{frame}"}}
for frame in frames
]}
]
)
st.markdown(response.choices[0].message.content)
else:
st.write("No videos found.")
elif tab_main == "📝 Editor":
if st.session_state.editing_file:
st.subheader(f"Editing: {st.session_state.editing_file}")
new_text = st.text_area("✏️ Content:", st.session_state.edit_new_content, height=300)
if st.button("💾 Save"):
with open(st.session_state.editing_file, 'w', encoding='utf-8') as f:
f.write(new_text)
st.success("File updated successfully!")
st.session_state.should_rerun = True
st.session_state.editing_file = None
else:
st.write("Select a file from the sidebar to edit.")
display_file_manager_sidebar(groups_sorted)
if st.session_state.viewing_prefix and any(st.session_state.viewing_prefix == group for group, _ in groups_sorted):
st.write("---")
st.write(f"**Viewing Group:** {st.session_state.viewing_prefix}")
for group_name, files in groups_sorted:
if group_name == st.session_state.viewing_prefix:
for f in files:
fname = os.path.basename(f)
ext = os.path.splitext(fname)[1].lower().strip('.')
st.write(f"### {fname}")
if ext == "md":
content = open(f, 'r', encoding='utf-8').read()
st.markdown(content)
elif ext in ["mp3", "wav"]:
st.audio(f)
else:
st.markdown(get_download_link(f), unsafe_allow_html=True)
break
if st.button("❌ Close"):
st.session_state.viewing_prefix = None
st.session_state['marquee_content'] = "🚀 Welcome to TalkingAIResearcher | 🤖 Your Research Assistant"
st.markdown("""
<style>
.main { background: linear-gradient(to right, #1a1a1a, #2d2d2d); color: #fff; }
.stMarkdown { font-family: 'Helvetica Neue', sans-serif; }
.stButton>button { margin-right: 0.5rem; }
</style>
""", unsafe_allow_html=True)
if st.session_state.should_rerun:
st.session_state.should_rerun = False
st.rerun()
if __name__ == "__main__":
main() |