ReMixable-AI-AR / backup1.app.py
awacke1's picture
Update backup1.app.py
c4fc415 verified
import streamlit as st
import os
from PIL import Image
st.markdown('''
# Remixable!
''')
col1, col2, col3 = st.columns(3)
with col1:
st.markdown('''### Inputs''')
st.button("๐Ÿ“ Text")
st.button("๐Ÿ“– Read")
st.button("๐Ÿ“ท Photo")
st.button("๐Ÿ–ผ๏ธ View")
st.button("๐ŸŽ™๏ธ Record")
st.button("๐ŸŽง Listen")
st.button("๐ŸŽฅ Video")
st.button("๐Ÿ“น Capture")
with col2:
st.markdown('''### Outputs''')
st.button("๐Ÿ’ฌ Chat")
st.button("โœ๏ธ Write")
st.button("๐ŸŽจ Art")
st.button("๐ŸŒ„ Create")
st.button("๐ŸŽต Music")
st.button("๐ŸŽถ Compose")
st.button("๐Ÿ“ผ Watch")
st.button("๐Ÿฟ Movies")
with col3:
st.markdown('''### Health''')
st.button("๐Ÿ’‰ Vaccinate")
st.button("๐Ÿฉบ Diagnose")
st.button("๐Ÿฅ Hospital")
st.button("๐Ÿš‘ Emergency")
st.button("๐Ÿ’Š Meds")
st.button("๐Ÿฉน Bandage")
st.button("๐Ÿงฌ DNA")
st.button("๐Ÿ”ฌ Research")
st.button("๐ŸŒก๏ธ Temperature")
st.button("๐Ÿ Nutrition")
col4, col5, col6 = st.columns(3)
with col4:
st.markdown('''### Learning''')
st.button("๐Ÿ“š Study")
st.button("๐Ÿง  Brain")
st.button("๐Ÿ‘ฉโ€๐ŸŽ“ Graduate")
st.button("๐Ÿ“ Measure")
st.button("๐Ÿ” Search")
st.button("๐Ÿ“Š Analyze")
st.button("๐Ÿ“‹ Plan")
st.button("๐Ÿ–‹๏ธ Write")
st.button("๐Ÿ‘จโ€๐Ÿซ Teach")
st.button("๐Ÿงฉ Puzzle")
with col5:
st.markdown('''### AI''')
st.button("๐Ÿค– Robot")
st.button("๐Ÿ‘พ Game")
st.button("๐Ÿ’ป Code")
st.button("๐Ÿงฎ Calculate")
st.button("๐Ÿ“ก Connect")
st.button("๐Ÿ”‹ Power")
st.button("๐Ÿ•น๏ธ Play")
st.button("๐Ÿ–ฅ๏ธ Display")
st.button("๐Ÿง‘โ€๐Ÿ’ป Develop")
st.button("๐Ÿ‘จโ€๐Ÿ”ฌ Experiment")
with col6:
st.markdown('''### Writing''')
st.button("โœ๏ธ Author")
st.button("๐Ÿ“ Note")
st.button("๐Ÿ–Š๏ธ Pen")
st.button("๐Ÿ–‹๏ธ Sign")
st.button("๐Ÿ“š Library")
st.button("๐Ÿ”– Bookmark")
st.button("๐Ÿ““ Journal")
st.button("โœ’๏ธ Ink")
st.button("๐Ÿ“œ Scroll")
def display_images_and_wikipedia_summaries():
st.title('Gallery with Related Stories')
image_files = [f for f in os.listdir('.') if f.endswith('.png')]
if not image_files:
st.write("No PNG images found in the current directory.")
return
for image_file in image_files:
image = Image.open(image_file)
st.image(image, caption=image_file, use_column_width='always')
keyword = image_file.split('.')[0] # Assumes keyword is the file name without extension
wikipedia_summary = fetch_wikipedia_summary(keyword)
st.write(wikipedia_summary)
display_images_and_wikipedia_summaries()
st.markdown('# Three Dragons ๐Ÿ‰๐ŸŒ Mythical Dragons Around the World by Aaron Wacker')
dragons = {
'#Fafnir #Norse': '- **Story**: Fafnir originally a dwarf, transformed into a fierce dragon due to his greed for the treasure he guarded. He was later slain by the hero Sigurd. - **Significance**: deadly sin of greed and the corrupting power of wealth.',
'#Quetzalcoatl #Aztec': '- **Story**: Quetzalcoatl, the Feathered Serpent, is not a dragon in the traditional sense but shares many similarities. He was a deity representing wind, air, and learning. - **Significance**: creator god and a symbol of death and rebirth.',
'#Tiamat #Mesopotamian': '- **Story**: Tiamat, primordial goddess of ocean, turned into a dragon-like creature in a battle against her children who threatened her authority. - **Significance**: chaos of primordial creation and is often associated with the forces of nature.'
}
for dragon, story in dragons.items():
st.subheader(dragon)
st.markdown(f"- {story}")
st.markdown('''
https://github.com/AaronCWacker/ThreeDragons
![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/vkNh6XnEtGSj8mXea1W6p.png)
![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/Kr_nqtaglHE_aiFxWH9zF.png)
![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/WLRKWqB6dKlMH6saVV9cX.png)
![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/Lyazf6FuX4nH__4illVki.png)
![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/ZemsxlT3b5idB0W5IjL1o.png)
''')