Commit
·
9512aec
1
Parent(s):
10b566a
Update app.py (#3)
Browse files- Update app.py (9d9ee24a4c8b294a01ab9edbb7591d0bba6cb0b8)
Co-authored-by: Omar Sanseviero <osanseviero@users.noreply.huggingface.co>
app.py
CHANGED
|
@@ -64,6 +64,7 @@ def generate_code_threads(
|
|
| 64 |
st.set_page_config(page_icon=":laptop:", layout="wide")
|
| 65 |
with open("utils/table_contents.md", "r") as f:
|
| 66 |
contents = f.read()
|
|
|
|
| 67 |
st.sidebar.markdown(contents)
|
| 68 |
|
| 69 |
# Introduction
|
|
@@ -102,7 +103,7 @@ with col1:
|
|
| 102 |
selected_models = st.multiselect(
|
| 103 |
"Select code generation models to compare:",
|
| 104 |
GENERATION_MODELS,
|
| 105 |
-
default=
|
| 106 |
key=3,
|
| 107 |
)
|
| 108 |
st.markdown(" ")
|
|
|
|
| 64 |
st.set_page_config(page_icon=":laptop:", layout="wide")
|
| 65 |
with open("utils/table_contents.md", "r") as f:
|
| 66 |
contents = f.read()
|
| 67 |
+
st.sidebar.header("[1. Test Header](#1-code-datasets)")
|
| 68 |
st.sidebar.markdown(contents)
|
| 69 |
|
| 70 |
# Introduction
|
|
|
|
| 103 |
selected_models = st.multiselect(
|
| 104 |
"Select code generation models to compare:",
|
| 105 |
GENERATION_MODELS,
|
| 106 |
+
default=["CodeParrot"],
|
| 107 |
key=3,
|
| 108 |
)
|
| 109 |
st.markdown(" ")
|