Spaces:
Runtime error
Runtime error
Commit
·
9411465
1
Parent(s):
3c30c07
Upload app.py
Browse files
app.py
CHANGED
@@ -65,3 +65,27 @@ if st.button("Generate Result"):
|
|
65 |
# Connect to Clarifai API for Text-to-Speech
|
66 |
# Replace the following lines with actual Text-to-Speech logic
|
67 |
st.warning("Text-to-Speech integration code goes here.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
# Connect to Clarifai API for Text-to-Speech
|
66 |
# Replace the following lines with actual Text-to-Speech logic
|
67 |
st.warning("Text-to-Speech integration code goes here.")
|
68 |
+
|
69 |
+
# Add the beautiful social media icon section
|
70 |
+
st.markdown("""
|
71 |
+
<div align="center">
|
72 |
+
<a href="https://github.com/pyresearch/pyresearch" style="text-decoration:none;">
|
73 |
+
<img src="https://user-images.githubusercontent.com/34125851/226594737-c21e2dda-9cc6-42ef-b4e7-a685fea4a21d.png" width="2%" alt="" /></a>
|
74 |
+
<img src="https://user-images.githubusercontent.com/34125851/226595799-160b0da3-c9e0-4562-8544-5f20460f7cc9.png" width="2%" alt="" />
|
75 |
+
<a href="https://www.linkedin.com/company/pyresearch/" style="text-decoration:none;">
|
76 |
+
<img src="https://user-images.githubusercontent.com/34125851/226596446-746ffdd0-a47e-4452-84e3-bf11ec2aa26a.png" width="2%" alt="" /></a>
|
77 |
+
<img src="https://user-images.githubusercontent.com/34125851/226595799-160b0da3-c9e0-4562-8544-5f20460f7cc9.png" width="2%" alt="" />
|
78 |
+
<a href="https://twitter.com/Noorkhokhar10" style="text-decoration:none;">
|
79 |
+
<img src="https://user-images.githubusercontent.com/34125851/226599162-9b11194e-4998-440a-ba94-c8a5e1cdc676.png" width="2%" alt="" /></a>
|
80 |
+
<img src="https://user-images.githubusercontent.com/34125851/226595799-160b0da3-c9e0-4562-8544-5f20460f7cc9.png" width="2%" alt="" />
|
81 |
+
<a href="https://www.youtube.com/@Pyresearch" style="text-decoration:none;">
|
82 |
+
<img src="https://user-images.githubusercontent.com/34125851/226599904-7d5cc5c0-89d2-4d1e-891e-19bee1951744.png" width="2%" alt="" /></a>
|
83 |
+
<img src="https://user-images.githubusercontent.com/34125851/226595799-160b0da3-c9e0-4562-8544-5f20460f7cc9.png" width="2%" alt="" />
|
84 |
+
<a href="https://www.facebook.com/Pyresearch" style="text-decoration:none;">
|
85 |
+
<img src="https://user-images.githubusercontent.com/34125851/226600380-a87a9142-e8e0-4ec9-bf2c-dd6e9da2f05a.png" width="2%" alt="" /></a>
|
86 |
+
<img src="https://user-images.githubusercontent.com/34125851/226595799-160b0da3-c9e0-4562-8544-5f20460f7cc9.png" width="2%" alt="" />
|
87 |
+
<a href="https://www.instagram.com/pyresearch/" style="text-decoration:none;">
|
88 |
+
<img src="https://user-images.githubusercontent.com/34125851/226601355-ffe0b597-9840-4e10-bbef-43d6c74b5a9e.png" width="2%" alt="" /></a>
|
89 |
+
</div>
|
90 |
+
<hr>
|
91 |
+
""", unsafe_allow_html=True)
|