Skip to content

Commit 34df9fe

Browse files
committed
v3 endpoint for chat v2 :mayhem:
1 parent 031aeb0 commit 34df9fe

File tree

23 files changed

+2818
-576
lines changed

23 files changed

+2818
-576
lines changed

compose.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ services:
66
image: gptwrapper_dev
77
environment:
88
- DATABASE_URL=postgres://postgres:postgres@db:5432/postgres
9+
- CHROMADB_URL=http://chromadb:8001
910
volumes:
1011
- ./:/opt/app-root/src
1112
ports:
@@ -30,6 +31,15 @@ services:
3031
# volumes:
3132
# - redis_data:/data
3233

34+
chromadb:
35+
image: chromadb/chroma
36+
container_name: gptwrapper_chromadb
37+
command: chroma run --port 8001
38+
ports:
39+
- 8001:8001
40+
volumes:
41+
- chromadb_data:/data
42+
3343
# ollama:
3444
# image: ollama/ollama
3545
# ports:
@@ -39,5 +49,5 @@ services:
3949

4050
volumes:
4151
pg_data:
42-
# redis_data:
52+
chromadb_data:
4353
ollama_data:

0 commit comments

Comments
 (0)