forked from adrianliechti/llama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
48 lines (34 loc) · 940 Bytes
/
Taskfile.yml
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
# https://taskfile.dev
version: "3"
vars:
REPOSITORY: ghcr.io/adrianliechti/llama-platform
#REPOSITORY: ghcr.io/adrianliechti/llama-platform:nightly
includes:
llama:
taskfile: ./Taskfile.llama.yml
nomic:
taskfile: ./Taskfile.nomic.yml
reranker:
taskfile: ./Taskfile.reranker.yml
whisper:
taskfile: ./Taskfile.whisper.yml
tts:
taskfile: ./Taskfile.tts.yml
unstructured:
taskfile: ./Taskfile.unstructured.yml
qdrant:
taskfile: ./Taskfile.qdrant.yml
tasks:
publish:
cmds:
- docker buildx build . --push --platform linux/amd64,linux/arm64 --tag {{.REPOSITORY}}
server:
dotenv: ['.env' ]
cmds:
- go run cmd/server/main.go
client:
cmds:
- go run cmd/client/main.go
webui:
cmds:
- docker run -it --rm --pull always -p 8501:8501 -e OPENAI_BASE_URL=http://host.docker.internal:8080/v1 ghcr.io/adrianliechti/llama-streamlit