Spaces:
Runtime error
Runtime error
File size: 215 Bytes
1761643 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.PHONY: start
start:
RELOAD=true python app.py
test:
python style_master/LLMRecommender.py
.PHONY: format
format:
black .
install:
pip install -r requirements.txt
process:
python process.py
|