Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,7 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
button = gr.LoginButton("Sign in")
|
8 |
-
gr.load("models/deepseek-ai/DeepSeek-R1", accept_token=button, provider="together")
|
9 |
-
|
10 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
def model(params):
|
4 |
+
return "hello world"
|
5 |
+
|
6 |
+
const app = gr.Interface(fn=model, "text","text")
|
|
|
|
|
|
|
7 |
demo.launch()
|