I don’t understand why I cannot use language_tool_python with Streamlit.
The first code works in my IDE
import language_tool_python
tl = language_tool_python.LanguageTool('en-US')
txt = "good mooorning sirr and medam my namee vincent i am from amerecia !"
m = tl.check(txt)
print(len(m))
The second code fails with streamlit
import streamlit as st
import language_tool_python
@st.cache(allow_output_mutation=True)
def get_model():
tool = language_tool_python.LanguageTool('en-US')
return tool
tool = get_model()
with st.form(key='my_form'):
prompt = st.text_area(label='Enter sentence', value=" ")
submit_button = st.form_submit_button(label='Submit')
if submit_button:
m = tool.correct(prompt)
st.write(m)
Hi @Vincent_Terrasi , thanks for submitting this issue! I was able to reproduce what you were talking about. It looks like what is happening is that streamlit is trying to use localhost 8501 and same with when the language_tool_python is trying to download. As a result, there is a problem.
Maybe you can try running looking at this forum issue and running streamlit with a different port!
The main answer that is relevant to you I will post here:
There is a param called server.port. So you can do something like: streamlit run streamlit_app.py --server.port 8080
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.