You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was getting this error logger.error('Could not fetch the list of available spaCy models from {}. ' 'Please check your internet connection.'.format(url))
I had to change the url on line 114 to this. url = "https://api.github.com/repos/explosion/spacy-models/releases"
I basically just removed ?per_page=100 at the end and I was able to auto download the spacy model after that adjustment.
The text was updated successfully, but these errors were encountered:
StoryToolkitAI/storytoolkitai/core/toolkit_ops/textanalysis.py
Line 114 in 836d5b8
I was getting this error
logger.error('Could not fetch the list of available spaCy models from {}. ' 'Please check your internet connection.'.format(url))
I had to change the url on line 114 to this.
url = "https://api.github.com/repos/explosion/spacy-models/releases"
I basically just removed
?per_page=100
at the end and I was able to auto download the spacy model after that adjustment.The text was updated successfully, but these errors were encountered: