-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathMakefile
61 lines (43 loc) · 1.21 KB
/
Makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
VENV = .venv
PYTHON = $(VENV)/bin/python3
PIP = $(VENV)/bin/pip3
STREAMLIT = $(VENV)/bin/streamlit
GRADIO = $(VENV)/bin/gradio
$(VENV)/bin/activate: requirements.txt
python3 -m venv $(VENV)
$(PIP) install -r requirements.txt
chatopenai: $(VENV)/bin/activate
$(STREAMLIT) run chatopenai.py
chat: $(VENV)/bin/activate
$(STREAMLIT) run chat.py
chatpdf: $(VENV)/bin/activate
$(STREAMLIT) run chatpdf.py
longimg: $(VENV)/bin/activate
$(STREAMLIT) run longimg.py
chatpdfemb: $(VENV)/bin/activate
$(STREAMLIT) run chatpdfemb.py
chatgradio: $(VENV)/bin/activate
$(GRADIO) chatgradio.py
docv: $(VENV)/bin/activate
$(STREAMLIT) run docv.py
search: $(VENV)/bin/activate
$(STREAMLIT) run chatsearch.py
reasoning: $(VENV)/bin/activate
$(STREAMLIT) run reasoning.py
discussion: $(VENV)/bin/activate
$(STREAMLIT) run discussion.py --server.port 9093
llama: $(VENV)/bin/activate
$(STREAMLIT) run llama.py
voice: $(VENV)/bin/activate
$(STREAMLIT) run voice.py
hw: $(VENV)/bin/activate
$(STREAMLIT) run hw.py
util: $(VENV)/bin/activate
$(PYTHON) solar_util.py
podcast: $(VENV)/bin/activate
$(STREAMLIT) run podcast.py
biz_help: $(VENV)/bin/activate
$(STREAMLIT) run biz_help.py
clean:
rm -rf __pycache__
rm -rf $(VENV)