git clone git@github.com:Serhii-M-prime/LLM-SandBox.gitcd LLM-SandBoxmkdir venv-run# might be python3 if your OS not configured for work with python
python -m venv venv-runsource venv-run/bin/activateecho "HF_HOME=\"$PWD/.cache/huggingface\"
HF_HUB_CACHE=\"$PWD/.cache/huggingface/hub\"
HF_ASSETS_CACHE=\"$PWD/.cache/huggingface/assets\"
HF_DATASETS_CACHE=\"$PWD/.cache/huggingface/datasets\"
TRANSFORMERS_CACHE=\"$PWD/.cache/huggingface/models\"" > .env# might be pip3 if your OS not configured for work with python
pip install -r requirements.run.txtRun chat (waiting for downloading models) (auto open in default browser on host http://localhost:8000/)
chainlit run app.pyTraining tool https://ludwig.ai/latest/
mkdir "venv-tune"# might be python3 if your OS not configured for work with python
python -m venv venv-tune/source venv-tune/bin/activateInstall dependencies
# might be pip3 if your OS not configured for work with python
pip install -r requirements.tune.txt