Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def coder_bot(prompt):
|
| 4 |
+
return "This is where your world-class AI Coder Bot will generate code for: " + prompt
|
| 5 |
+
|
| 6 |
+
demo = gr.Interface(fn=coder_bot, inputs="text", outputs="text", title="AI Coder Bot")
|
| 7 |
+
|
| 8 |
+
demo.launch()
|