Spaces:
Runtime error
Runtime error
Akshay Vs
commited on
Commit
•
5ae414b
1
Parent(s):
e9e0c4c
Added functionality
Browse files
app.py
CHANGED
@@ -39,7 +39,8 @@ if text:
|
|
39 |
for _ in range(50):
|
40 |
result = generate(text)
|
41 |
text=slice(result)
|
42 |
-
|
|
|
43 |
#with concurrent.futures.ThreadPoolExecutor() as executor:
|
44 |
# executor.submit(type_text, result.replace(text,""))
|
45 |
|
|
|
39 |
for _ in range(50):
|
40 |
result = generate(text)
|
41 |
text=slice(result)
|
42 |
+
out = result.replace(text,"")
|
43 |
+
st.markdown(f"<h3><b>{out}</b></h3>")
|
44 |
#with concurrent.futures.ThreadPoolExecutor() as executor:
|
45 |
# executor.submit(type_text, result.replace(text,""))
|
46 |
|