File size: 361 Bytes
0d0811c
 
 
 
 
 
 
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
.PHONY: start
start:
	python app.py

test:
	python qa_chain_test.py

chat:
	python qa_chain_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 .