frankrobotics commited on
Commit
7514661
Β·
verified Β·
1 Parent(s): 8cc1f9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -1,10 +1,7 @@
1
  import gradio as gr
2
 
3
- with gr.Blocks(fill_height=True) as demo:
4
- with gr.Sidebar():
5
- gr.Markdown("# Inference Provider")
6
- gr.Markdown("This Space showcases the deepseek-ai/DeepSeek-R1 model, served by the together API. Sign in with your Hugging Face account to use this API.")
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()