Spaces:
Runtime error
Runtime error
add description
Browse files
app.py
CHANGED
@@ -27,6 +27,9 @@ def get_similar_files(query, db, embeddings):
|
|
27 |
# STREAMLIT INTERFACE
|
28 |
st.title("Find Similar Code")
|
29 |
|
|
|
|
|
|
|
30 |
USER = st.text_input("Enter the Github User", value = "heaversm")
|
31 |
REPO = st.text_input("Enter the Github Repository", value = "gdrive-docker")
|
32 |
FILE_TYPES_TO_LOAD = st.multiselect("Select File Types", [".py", ".ts",".js",".css",".html"], default = [".py"])
|
|
|
27 |
# STREAMLIT INTERFACE
|
28 |
st.title("Find Similar Code")
|
29 |
|
30 |
+
st.markdown("This app takes a code sample you provide, and finds similar code in a Github repository.")
|
31 |
+
st.markdown("This functionality could ideally be implemented across multiple repos to allow you to find helpful examples of how to implement the code you are working on writing, or identify other code contributors who could help you resolve your issues")
|
32 |
+
|
33 |
USER = st.text_input("Enter the Github User", value = "heaversm")
|
34 |
REPO = st.text_input("Enter the Github Repository", value = "gdrive-docker")
|
35 |
FILE_TYPES_TO_LOAD = st.multiselect("Select File Types", [".py", ".ts",".js",".css",".html"], default = [".py"])
|