Akshay Vs commited on
Commit
92feb2d
1 Parent(s): 5ae414b

Added functionality

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ if text:
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
 
 
40
  result = generate(text)
41
  text=slice(result)
42
  out = result.replace(text,"")
43
+ st.markdown(f"<h3><b>{out}</b></h3>", unsafe_allow_html=True)
44
  #with concurrent.futures.ThreadPoolExecutor() as executor:
45
  # executor.submit(type_text, result.replace(text,""))
46