16 lines
220 B
Makefile
16 lines
220 B
Makefile
.PHONY: run check qwen-context
|
|
|
|
PYTHON := python3
|
|
ifneq ($(wildcard .venv/bin/python),)
|
|
PYTHON := .venv/bin/python
|
|
endif
|
|
|
|
run:
|
|
$(PYTHON) run.py
|
|
|
|
check:
|
|
./scripts/qwen-check.sh
|
|
|
|
qwen-context:
|
|
./scripts/qwen-context.sh
|