Janulus is an AI-powered conversation app designed to help you become fluent in just about any language you want. Janulus provides tailored conversations (via text or audio) based on users' interests and abilities with real-time feedback. Paired with progress tracking across 5 proficiency ratings, this app will build your confidence while encouraging consistent learning.
Practice in conversation is one of the best ways to improve in a language. However, friends who speak that language won't always be available to practice with you, and beginners may feel nervous about making mistakes in front of someone else. This app aims to bridge that gap, by providing a stress-free environment where learners of all skill levels can engage in customisable conversations 24/7 while receiving instant tailored feedback.
People who want to practice conversations in a foreign language but cannot find another speaker of that language (or would like to practice in a stress-free environment)
- Lets user chat with an AI in a language of choice
- Wide range of languages to choose from
- Text-to-speech
- Per-text Feedback and General Conversation Feedback
Copy and paste your openai key to key.py
with KEY= <secret key>
.
Then ensure your have all dependancy install and run the app with python -m app
Once started, follow the link shown on the console and:
- Create username and sign in
- Select language, proficiency level, and hobbies
- Initiate conversation in the language
- End conversation after satisfied
-
Make sure your google cloud account is setup with a service account.
-
Install google cloud text to speech
pip install --upgrade google-cloud-texttospeech
-
Download the google cloud cli:
https://cloud.google.com/sdk/docs/install-sdk
OR
curl -O https://dl.google.com/dl/cloudsdk/channels/rapid/downloads/google-cloud-cli-444.0.0-linux-x86_64.tar.gz
tar -xf google-cloud-cli-444.0.0-linux-x86_64.tar.gz
-
Run the google cloud install script and also initialise gcloud and log in
gcloud init
./google-cloud-sdk/bin/install.sh
./google-cloud-sdk/bin/gcloud init
-
Use google adc to set up Application Default Credentials and log in (if you do not want to download the json key manually and save as environment variable)
gcloud auth application-default login
OR./google-cloud-sdk/bin/gcloud auth application-default login
A Python back-end interacts with ChatGPT via the OpenAI API to create the language facilitator functionality. Text-to-speech is achieved via the Google Cloud TTS API. User data is stored locally using JSON files (in the full release, a web server will be hosted which will store this data). The front-end is built using Flask, JavaScript, HTML and CSS which provides an interface to interact with the application.