Learn Corsican language using Large Language Model through a discussion with a personalized assistant.
We want to propose a 1 to 1 tutoring dialogue that will be based on large corpus of all kinds of books about the given language, how to conjugate verbs and more. We are planning to add more languages, but we started with Corsican language since it's the repository author country. We are targetting languages that have bad coverage in LLM datasets.
DM on twitter to request a demo token.
- Install dependencies:
pip install -r requirements.txt
- Run
ingest.sh
to ingest LangChain docs data into the vectorstore (only needs to be done once).- You can use other Document Loaders to load your own data into the vectorstore.
- Run the app:
make start
- To enable tracing, make sure
langchain-server
is running locally and passtracing=True
toget_chain
inmain.py
. You can find more documentation here.
- To enable tracing, make sure
- Open localhost:9000 in your browser.
Deployed version (to be updated soon):
There are two components: ingestion and question-answering.
Ingestion has the following steps:
- Pull html from documentation site
- Load html with LangChain's ReadTheDocs Loader
- Split documents with LangChain's TextSplitter
- Create a vectorstore of embeddings, using LangChain's vectorstore wrapper (with OpenAI's embeddings and FAISS vectorstore).
Question-Answering has the following steps, all handled by ChatVectorDBChain:
- Given the chat history and new student input, determine student missing knowledge and propose an exercise to fill the knowledge gap.
- Given that exercise proposition, look up relevant documents from the vectorstore.
- Pass the student input and relevant documents to a LLM to generate a final answer.