Spaces:
Running
on
Zero
Running
on
Zero
changed
Browse files
app.py
CHANGED
@@ -30,10 +30,10 @@ def generate(prompt):
|
|
30 |
return r
|
31 |
|
32 |
input_textbox = gr.Textbox(
|
33 |
-
label="
|
34 |
-
info="
|
35 |
lines=3,
|
36 |
-
value="def fibonacci(n: int) ->
|
37 |
)
|
38 |
gr.Interface(
|
39 |
fn=generate,
|
|
|
30 |
return r
|
31 |
|
32 |
input_textbox = gr.Textbox(
|
33 |
+
label="Prompt",
|
34 |
+
info="Code goes here",
|
35 |
lines=3,
|
36 |
+
value="def fibonacci(n: int) -> list:\n",
|
37 |
)
|
38 |
gr.Interface(
|
39 |
fn=generate,
|