Spaces:
Runtime error
Runtime error
Commit
·
e4b5450
1
Parent(s):
ce94250
Added theme to test
Browse files
app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
from run_llm import main
|
3 |
|
|
|
|
|
4 |
def run_llm_interface(model, task, sentence):
|
5 |
args = argparse.Namespace(
|
6 |
model_path=model,
|
|
|
1 |
import gradio as gr
|
2 |
from run_llm import main
|
3 |
|
4 |
+
theme = gr.themes.Soft()
|
5 |
+
|
6 |
def run_llm_interface(model, task, sentence):
|
7 |
args = argparse.Namespace(
|
8 |
model_path=model,
|