ChatWithADoc / makefile
datastx's picture
for gpu
a83266c
raw
history blame contribute delete
No virus
280 Bytes
PYTHON_BINARY = $(VENV)/python
STREAMLIT_BINARY = $(VENV)/streamlit
re-venv: clean-venv venv
run: venv
$(PYTHON_BINARY) app.py
$(STREAMLIT_BINARY) run app.py
build:
docker build -t medllama2_7b .
run-docker:
docker run -p 4000:80 medllama2_7b
include Makefile.venv