Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
import sambanova_gradio
|
3 |
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
with gr.Tab("1B"):
|
6 |
gr.load("Meta-Llama-3.2-1B-Instruct",
|
7 |
src=sambanova_gradio.registry,
|
|
|
1 |
import gradio as gr
|
2 |
import sambanova_gradio
|
3 |
|
4 |
+
css = '''
|
5 |
+
.gradio-container{max-width: 888px !important}
|
6 |
+
h1{text-align:center}
|
7 |
+
footer {
|
8 |
+
visibility: hidden
|
9 |
+
}
|
10 |
+
'''
|
11 |
+
|
12 |
+
with gr.Blocks(css=css, theme=gr.themes.Ocean()) as demo:
|
13 |
with gr.Tab("1B"):
|
14 |
gr.load("Meta-Llama-3.2-1B-Instruct",
|
15 |
src=sambanova_gradio.registry,
|