Spaces:
Runtime error
Runtime error
update
Browse files
app.py
CHANGED
@@ -31,7 +31,9 @@ def generate_code(model_name, gen_prompt, max_new_tokens, temperature, seed):
|
|
31 |
|
32 |
|
33 |
st.set_page_config(page_icon=":laptop:", layout="wide")
|
34 |
-
|
|
|
|
|
35 |
|
36 |
# Introduction
|
37 |
st.title("Code generation with 🤗")
|
|
|
31 |
|
32 |
|
33 |
st.set_page_config(page_icon=":laptop:", layout="wide")
|
34 |
+
with open("utils/table_contents.txt", "r") as f:
|
35 |
+
contents = f.read()
|
36 |
+
st.sidebar.markdown(contents)
|
37 |
|
38 |
# Introduction
|
39 |
st.title("Code generation with 🤗")
|