LangLearnCopilot is a collection of functions and tools, to generate content in a proper format, to help you learn a new language.
For now, I am focusing on French (my personal interesting) and Spanish (for friends).
While this is a standalone library, my advice is, for the best results, to use its outcomes hand-in-hand with the awesome flashcards application, Anki
The main two applications at the moment
pip install langlearncopilot
You can find examples in the ./examples
folder
Note: you need to set your OpenAI key first. If the OPENAI_API_KEY
is declared already as an environment variable, or exisiting in the current folder in a .env
file, then the package will find it.
Other wise, you can set it manually by calling
from langlearncopilot.llm_calls import set_openai_key
set_openai_key("ENTER KEY VALUE HERE")
from langlearncopilot import generators
generators.generate_unique_words(
article="Bonjour, je m'appelle Jean. Je suis un étudiant à l'université de Paris."
)
returns
{
'bonjour': 'hello',
'je': 'i',
"m'appelle": 'is called',
'suis': 'am',
'un': 'a',
'étudiant': 'student',
'à': 'at',
"l'université": 'university',
'de': 'of'
}
from langlearncopilot import generators
generators.generate_phrases("combien")
returns
[
{'combien': {'phrase': 'Combien de personnes sont venues à la fête?', 'translation': ' How many people came to the party?'}},
{'combien': {'phrase': 'Combien coûte ce sac à dos?', 'translation': ' How much does this backpack cost?'}},
{'combien': {'phrase': "Il m'a demandé combien de temps cela prendrait.", 'translation': ' He asked me how long it would take.'}}
]
from langlearncopilot.parsers import get_text_from_webpage
from langlearncopilot.generators import generate_unique_words
def main():
# Get text from a webpage
text = get_text_from_webpage(
url="https://www.lemonde.fr/planete/article/2023/08/27/comment-les-parcs-nationaux-americains-tentent-de-faire-face-aux-effets-du-rechauffement-climatique_6186696_3244.html"
)
# Generate unique words from the text
words = generate_unique_words(article=text, language="french")
print(words)
if __name__ == "__main__":
main()
returns
{
'comment': 'how',
'les': 'the',
'parcs': 'parks',
'nationaux': 'national',
'américains': 'american',
'tentent': 'try',
'de': 'of',
...
}