forked from akash-network/akash-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.yml
More file actions
62 lines (62 loc) · 1.13 KB
/
deploy.yml
File metadata and controls
62 lines (62 loc) · 1.13 KB
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
62
---
version: "2.0"
services:
akashchat:
image: >-
ghcr.io/akash-network/akash-chat:latest
expose:
- port: 3000
as: 80
accept:
- chat.akash.network
to:
- global: true
env:
- API_KEY=sk-...
- API_ENDPOINT=https://chatapi.akash.network/api/v1
- DEFAULT_MODEL=Meta-Llama-3-3-70B-Instruct
- REDIS_URL=redis://redis:6379
redis:
image: redislabs/redismod
expose:
- port: 6379
as: 6379
to:
- global: false
- service: akashchat
profiles:
compute:
akashchat:
resources:
cpu:
units: 2
memory:
size: 4Gi
storage:
- size: 2Gi
redis:
resources:
cpu:
units: 1
memory:
size: 1Gi
storage:
- size: 1Gi
placement:
akash:
pricing:
akashchat:
denom: uakt
amount: 10000
redis:
denom: uakt
amount: 10000
deployment:
akashchat:
akash:
profile: akashchat
count: 1
redis:
akash:
profile: redis
count: 1