forked from Samagra-Development/ai-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-restructure.yml
71 lines (70 loc) · 1.6 KB
/
docker-compose-restructure.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3'
services:
asr_google:
build:
context: src/asr/google/remote/.
dockerfile: Dockerfile
ports:
- "8002:8000"
conversation_terminator:
build:
context: src/conversation_terminator/remote/.
dockerfile: Dockerfile
ports:
- "8003:8000"
coref_spacy:
build:
context: src/coref/spacy/local/.
dockerfile: Dockerfile
ports:
- "8004:8000"
translation_bhasini:
build:
context: src/text_translation/bhashini/remote/.
dockerfile: Dockerfile
ports:
- "8005:8000"
lang_detection_bhasini:
build:
context: src/text_lang_detection/bhashini/remote/.
dockerfile: Dockerfile
ports:
- "8006:8000"
embedding_openai:
build:
context: src/embeddings/openai/remote/.
dockerfile: Dockerfile
ports:
- "8007:8000"
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
llm_openai_gpt3:
build:
context: src/llm/openai/chatgpt3/.
dockerfile: Dockerfile
ports:
- "8008:8000"
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
llm_openai_gpt4:
build:
context: src/llm/openai/chatgpt4/.
dockerfile: Dockerfile
ports:
- "8009:8000"
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
t2embedding_openai:
build:
context: src/t2embedding/openai/remote/.
dockerfile: Dockerfile
ports:
- "8010:8000"
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
translation_google:
build:
context: src/text_translation/google/remote/.
dockerfile: Dockerfile
ports:
- "8011:8000"