Isaoudata commited on
Commit
29074a9
·
1 Parent(s): 1f847cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -24,7 +24,7 @@ def infer(inp):
24
 
25
  return output
26
 
27
-
28
- output = infer(" I shall go")
29
- text = st.text_area(output)
30
- print(text)
 
24
 
25
  return output
26
 
27
+ text = st.text_area("Enter Prompt")
28
+ if text:
29
+ output = infer(text)
30
+ print(output)