def load_words_from_url()

in distilvit/update_config.py [0:0]


def load_words_from_url(url):
    response = requests.get(url)
    response.raise_for_status()
    words = {line.strip() for line in response.text.splitlines()}
    return words