Spaces:
Running
Running
File size: 429 Bytes
0d0811c 9e7327c 586884e 9e7327c 586884e 0d0811c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
.PHONY: start
start:
python app.py
test:
python qa_chain_test.py
long-test:
python qa_chain_with_memory_test.py 100
chat:
python qa_chain_with_memory_test.py chat
ingest:
python ingest.py
.PHONY: format
format:
black .
install:
pip install -r requirements.txt
cd ragas_extended && pip install -e .
install-mac:
pip install -r requirements-mac.txt
cd ragas_extended && pip install -e .
|