Spaces:
Sleeping
Sleeping
Commit
·
82865c2
1
Parent(s):
d3c00c0
Update app.py
Browse files
app.py
CHANGED
|
@@ -4,10 +4,9 @@ import streamlit as st
|
|
| 4 |
|
| 5 |
g = Github(os.environ.get('github'))
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
s += "- " + issue.title + "\n"
|
| 12 |
st.markdown(s)
|
| 13 |
|
|
|
|
| 4 |
|
| 5 |
g = Github(os.environ.get('github'))
|
| 6 |
|
| 7 |
+
inference_repo = g.get_repo("bigcode-inference-benchmark")
|
| 8 |
+
|
| 9 |
+
for milestone in inference_repo.get_milestones():
|
| 10 |
+
s = "###" + milestone.title + "\n"
|
|
|
|
| 11 |
st.markdown(s)
|
| 12 |
|