bedead commited on
Commit
283574c
·
verified ·
1 Parent(s): 20279d8

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -18
app.py DELETED
@@ -1,18 +0,0 @@
1
- import os
2
- import gradio as gr
3
-
4
-
5
- def response(USER_DATA, TOKEN) -> str:
6
- return "ok"
7
-
8
-
9
- with gr.Blocks() as llm:
10
- slider = gr.Slider(10, 100, render=False)
11
- chatbot = gr.ChatInterface(
12
- fn=response,
13
- multimodal=True,
14
- title="MultiModel LLM for Testcase generation",
15
- cache_examples=True,
16
- )
17
-
18
- llm.launch(debug=True)