Spaces:
Running
on
Zero
Running
on
Zero
zamalali
commited on
Commit
·
0d0fdd4
1
Parent(s):
44ada7e
Updated with README
Browse files- __pycache__/main.cpython-313.pyc +0 -0
- app.py +10 -8
__pycache__/main.cpython-313.pyc
CHANGED
Binary files a/__pycache__/main.cpython-313.pyc and b/__pycache__/main.cpython-313.pyc differ
|
|
app.py
CHANGED
@@ -25,6 +25,15 @@ if not any(isinstance(h, BufferLogHandler) for h in root_logger.handlers):
|
|
25 |
handler.setFormatter(formatter)
|
26 |
root_logger.addHandler(handler)
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
def filter_logs(logs):
|
29 |
filtered = []
|
30 |
last_was_fetching = False
|
@@ -135,14 +144,7 @@ with gr.Blocks(
|
|
135 |
#footer { text-align: center; margin-top: 20px; }
|
136 |
"""
|
137 |
) as demo:
|
138 |
-
gr.HTML(
|
139 |
-
"""
|
140 |
-
<head>
|
141 |
-
<link rel="icon" type="image/x-icon" href="file/assets/deepgit.ico">
|
142 |
-
<title>DeepGit Lite Research Agent</title>
|
143 |
-
</head>
|
144 |
-
"""
|
145 |
-
)
|
146 |
gr.Markdown(
|
147 |
"""
|
148 |
# DeepGit Lite
|
|
|
25 |
handler.setFormatter(formatter)
|
26 |
root_logger.addHandler(handler)
|
27 |
|
28 |
+
|
29 |
+
favicon_html = """
|
30 |
+
<head>
|
31 |
+
<link rel="icon" type="image/x-icon" href="file/assets/deepgit.ico">
|
32 |
+
<title>DeepGit Research Agent</title>
|
33 |
+
</head>
|
34 |
+
"""
|
35 |
+
|
36 |
+
|
37 |
def filter_logs(logs):
|
38 |
filtered = []
|
39 |
last_was_fetching = False
|
|
|
144 |
#footer { text-align: center; margin-top: 20px; }
|
145 |
"""
|
146 |
) as demo:
|
147 |
+
gr.HTML(favicon_html)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
gr.Markdown(
|
149 |
"""
|
150 |
# DeepGit Lite
|