awacke1 commited on
Commit
a857b87
โ€ข
1 Parent(s): d8ff977

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +118 -0
app.py CHANGED
@@ -1,6 +1,8 @@
1
  import streamlit as st
2
  import os
3
  import json
 
 
4
 
5
  # Directory to store scores
6
  score_dir = "scores"
@@ -66,3 +68,119 @@ if __name__ == "__main__":
66
  display_buttons_with_scores()
67
 
68
  # Additional content and functionality can go here
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
  import os
3
  import json
4
+ from PIL import Image
5
+
6
 
7
  # Directory to store scores
8
  score_dir = "scores"
 
68
  display_buttons_with_scores()
69
 
70
  # Additional content and functionality can go here
71
+
72
+
73
+
74
+
75
+
76
+
77
+ col1, col2, col3 = st.columns(3)
78
+
79
+ with col1:
80
+ st.markdown('''### Inputs''')
81
+ st.button("๐Ÿ“ Text")
82
+ st.button("๐Ÿ“– Read")
83
+ st.button("๐Ÿ“ท Photo")
84
+ st.button("๐Ÿ–ผ๏ธ View")
85
+ st.button("๐ŸŽ™๏ธ Record")
86
+ st.button("๐ŸŽง Listen")
87
+ st.button("๐ŸŽฅ Video")
88
+ st.button("๐Ÿ“น Capture")
89
+
90
+ with col2:
91
+ st.markdown('''### Outputs''')
92
+ st.button("๐Ÿ’ฌ Chat")
93
+ st.button("โœ๏ธ Write")
94
+ st.button("๐ŸŽจ Art")
95
+ st.button("๐ŸŒ„ Create")
96
+ st.button("๐ŸŽต Music")
97
+ st.button("๐ŸŽถ Compose")
98
+ st.button("๐Ÿ“ผ Watch")
99
+ st.button("๐Ÿฟ Movies")
100
+
101
+ with col3:
102
+ st.markdown('''### Health''')
103
+ st.button("๐Ÿ’‰ Vaccinate")
104
+ st.button("๐Ÿฉบ Diagnose")
105
+ st.button("๐Ÿฅ Hospital")
106
+ st.button("๐Ÿš‘ Emergency")
107
+ st.button("๐Ÿ’Š Meds")
108
+ st.button("๐Ÿฉน Bandage")
109
+ st.button("๐Ÿงฌ DNA")
110
+ st.button("๐Ÿ”ฌ Research")
111
+ st.button("๐ŸŒก๏ธ Temperature")
112
+ st.button("๐Ÿ Nutrition")
113
+
114
+ col4, col5, col6 = st.columns(3)
115
+
116
+ with col4:
117
+ st.markdown('''### Learning''')
118
+ st.button("๐Ÿ“š Study")
119
+ st.button("๐Ÿง  Brain")
120
+ st.button("๐Ÿ‘ฉโ€๐ŸŽ“ Graduate")
121
+ st.button("๐Ÿ“ Measure")
122
+ st.button("๐Ÿ” Search")
123
+ st.button("๐Ÿ“Š Analyze")
124
+ st.button("๐Ÿ“‹ Plan")
125
+ st.button("๐Ÿ–‹๏ธ Write")
126
+ st.button("๐Ÿ‘จโ€๐Ÿซ Teach")
127
+ st.button("๐Ÿงฉ Puzzle")
128
+
129
+ with col5:
130
+ st.markdown('''### AI''')
131
+ st.button("๐Ÿค– Robot")
132
+ st.button("๐Ÿ‘พ Game")
133
+ st.button("๐Ÿ’ป Code")
134
+ st.button("๐Ÿงฎ Calculate")
135
+ st.button("๐Ÿ“ก Connect")
136
+ st.button("๐Ÿ”‹ Power")
137
+ st.button("๐Ÿ•น๏ธ Play")
138
+ st.button("๐Ÿ–ฅ๏ธ Display")
139
+ st.button("๐Ÿง‘โ€๐Ÿ’ป Develop")
140
+ st.button("๐Ÿ‘จโ€๐Ÿ”ฌ Experiment")
141
+
142
+ with col6:
143
+ st.markdown('''### Writing''')
144
+ st.button("โœ๏ธ Author")
145
+ st.button("๐Ÿ“ Note")
146
+ st.button("๐Ÿ–Š๏ธ Pen")
147
+ st.button("๐Ÿ–‹๏ธ Sign")
148
+ st.button("๐Ÿ“š Library")
149
+ st.button("๐Ÿ”– Bookmark")
150
+ st.button("๐Ÿ““ Journal")
151
+ st.button("โœ’๏ธ Ink")
152
+ st.button("๐Ÿ“œ Scroll")
153
+
154
+ def display_images_and_wikipedia_summaries():
155
+ st.title('Gallery with Related Stories')
156
+ image_files = [f for f in os.listdir('.') if f.endswith('.png')]
157
+ if not image_files:
158
+ st.write("No PNG images found in the current directory.")
159
+ return
160
+ for image_file in image_files:
161
+ image = Image.open(image_file)
162
+ st.image(image, caption=image_file, use_column_width='always')
163
+ keyword = image_file.split('.')[0] # Assumes keyword is the file name without extension
164
+
165
+ wikipedia_summary = fetch_wikipedia_summary(keyword)
166
+ st.write(wikipedia_summary)
167
+
168
+ display_images_and_wikipedia_summaries()
169
+
170
+ st.markdown('# Three Dragons ๐Ÿ‰๐ŸŒ Mythical Dragons Around the World by Aaron Wacker')
171
+ dragons = {
172
+ '#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.',
173
+ '#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.',
174
+ '#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.'
175
+ }
176
+ for dragon, story in dragons.items():
177
+ st.subheader(dragon)
178
+ st.markdown(f"- {story}")
179
+ st.markdown('''
180
+ https://github.com/AaronCWacker/ThreeDragons
181
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/vkNh6XnEtGSj8mXea1W6p.png)
182
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/Kr_nqtaglHE_aiFxWH9zF.png)
183
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/WLRKWqB6dKlMH6saVV9cX.png)
184
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/Lyazf6FuX4nH__4illVki.png)
185
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/620630b603825909dcbeba35/ZemsxlT3b5idB0W5IjL1o.png)
186
+ ''')