Welcome to our open source project! Weβre excited that youβre interested in contributing. This document provides guidelines and instructions to help you get started as a contributor.
cd services/pythoncp ../env.template .env# Create and activate virtual environmentpython3.10 -m venv venvsource venv/bin/activate # On Windows: venv\Scripts\activate# Install dependenciespip install -e .# Install additional language modelspython -m spacy download en_core_web_smpython -c "import nltk; nltk.download('punkt')"# Run each service in a separate terminalpython -m app.connectors_mainpython -m app.indexing_mainpython -m app.query_main