Spaces:
Runtime error
Runtime error
Commit
·
29eaa3f
1
Parent(s):
58a6a1d
Update app.py
Browse files
app.py
CHANGED
@@ -17,6 +17,7 @@ import os
|
|
17 |
import re
|
18 |
|
19 |
def main():
|
|
|
20 |
st.set_page_config(layout="wide")
|
21 |
|
22 |
# -- 1. Setup arguments
|
@@ -42,11 +43,6 @@ def main():
|
|
42 |
TRANSCRIPTION_PATH = '{}_transcription.txt'.format(TRANSCRIPTION)
|
43 |
MODEL = args.MODEL
|
44 |
EMB_MODEL = args.EMB_MODEL
|
45 |
-
SOCIAL_ICONS = {
|
46 |
-
"LinkedIn": ["https://www.linkedin.com/in/alberto-fernandez-hernandez-3a3474136/", "https://icon.signature.email/social/linkedin-circle-medium-0077b5-FFFFFF.png", ],
|
47 |
-
"GitHub": ["https://github.com/AlbertoUAH", "https://icon.signature.email/social/github-circle-medium-24292e-FFFFFF.png"]
|
48 |
-
}
|
49 |
-
social_icons_html = [f"<a href='{SOCIAL_ICONS[platform][0]}' target='_blank' style='margin-right: 10px;'><img class='social-icon' src='{SOCIAL_ICONS[platform][1]}'' alt='{platform}''></a>" for platform in SOCIAL_ICONS]
|
50 |
|
51 |
together.api_key = os.environ["TOGETHER_API_KEY"]
|
52 |
together.Models.start(MODEL)
|
|
|
17 |
import re
|
18 |
|
19 |
def main():
|
20 |
+
print("HOLA")
|
21 |
st.set_page_config(layout="wide")
|
22 |
|
23 |
# -- 1. Setup arguments
|
|
|
43 |
TRANSCRIPTION_PATH = '{}_transcription.txt'.format(TRANSCRIPTION)
|
44 |
MODEL = args.MODEL
|
45 |
EMB_MODEL = args.EMB_MODEL
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
together.api_key = os.environ["TOGETHER_API_KEY"]
|
48 |
together.Models.start(MODEL)
|