Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ def infer(inp):
|
|
24 |
|
25 |
return output
|
26 |
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
print(
|
|
|
24 |
|
25 |
return output
|
26 |
|
27 |
+
text = st.text_area("Enter Prompt")
|
28 |
+
if text:
|
29 |
+
output = infer(text)
|
30 |
+
print(output)
|