Update app.py
Browse files
app.py
CHANGED
@@ -38,7 +38,7 @@ class SearchApplication:
|
|
38 |
self.search_button = st.button("🔎")
|
39 |
|
40 |
st.caption(
|
41 |
-
"You can search for 200+ leaderboards from the [Awesome Foundation Model Leaderboard](https://github.com/SAILResearch/awesome-foundation-model-leaderboards) list."
|
42 |
)
|
43 |
st.write("#")
|
44 |
|
@@ -76,11 +76,9 @@ class SearchApplication:
|
|
76 |
|
77 |
def show_citation_panel(self):
|
78 |
with st.expander(CITATION_BUTTON_LABEL, expanded=True):
|
79 |
-
st.
|
80 |
-
|
81 |
-
|
82 |
-
height=100,
|
83 |
-
help="Copy the citation text",
|
84 |
)
|
85 |
|
86 |
if __name__ == "__main__":
|
|
|
38 |
self.search_button = st.button("🔎")
|
39 |
|
40 |
st.caption(
|
41 |
+
"You can search for 200+ leaderboards & toolkits from the [Awesome Foundation Model Leaderboard](https://github.com/SAILResearch/awesome-foundation-model-leaderboards) list."
|
42 |
)
|
43 |
st.write("#")
|
44 |
|
|
|
76 |
|
77 |
def show_citation_panel(self):
|
78 |
with st.expander(CITATION_BUTTON_LABEL, expanded=True):
|
79 |
+
st.code(
|
80 |
+
CITATION_BUTTON_TEXT,
|
81 |
+
language="",
|
|
|
|
|
82 |
)
|
83 |
|
84 |
if __name__ == "__main__":
|