-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed: docker-compose.yaml.bak -> local-llm new file: local-llm-gpu modified: superagi/helper/json_cleaner.py renamed: DockerfileTGWUI -> tgwui/DockerfileTGWUI deleted: tgwui/config/place-your-models-here.txt deleted: tgwui/tgwui_requirements.txt
- Loading branch information
1 parent
ffead61
commit f133780
Showing
7 changed files
with
152 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
version: '3.8' | ||
|
||
services: | ||
backend: | ||
volumes: | ||
- "./:/app" | ||
build: . | ||
ports: | ||
- "8001:8001" | ||
depends_on: | ||
- super__tgwui | ||
- super__redis | ||
- super__postgres | ||
networks: | ||
- super_network | ||
|
||
celery: | ||
volumes: | ||
- "./:/app" | ||
build: | ||
context: . | ||
dockerfile: DockerfileCelery | ||
depends_on: | ||
- super__tgwui | ||
- super__redis | ||
- super__postgres | ||
networks: | ||
- super_network | ||
|
||
gui: | ||
build: ./gui | ||
ports: | ||
- "3000:3000" | ||
environment: | ||
- NEXT_PUBLIC_API_BASE_URL=http://localhost:8001 | ||
networks: | ||
- super_network | ||
volumes: | ||
- ./gui:/app | ||
- /app/node_modules | ||
- /app/.next | ||
|
||
super__tgwui: | ||
build: | ||
context: . | ||
target: llama-cublas | ||
dockerfile: ./tgwui/DockerfileTGWUI | ||
# args: | ||
# - LCL_SRC_DIR=text-generation-webui # Developers - see Dockerfile app_base | ||
container_name: super__tgwui | ||
environment: | ||
- EXTRA_LAUNCH_ARGS="--listen --no-mmap --verbose --extensions openai --auto-devices --n_ctx 1600 --gpu-memory 20 20 --n-gpu-layers 128 --threads 8 --model vicuna-13b-cot.ggmlv3.q8_0.bin" | ||
ports: | ||
- 7860:7860 # Default web port | ||
- 5000:5000 # Default API port | ||
- 5005:5005 # Default streaming port | ||
- 5001:5001 # Default OpenAI API extension port | ||
volumes: | ||
- ./tgwui/config/loras:/app/loras | ||
- ./tgwui/config/models:/app/models | ||
- ./tgwui/config/presets:/app/presets | ||
- ./tgwui/config/prompts:/app/prompts | ||
- ./tgwui/config/softprompts:/app/softprompts | ||
- ./tgwui/config/training:/app/training | ||
- ./tgwui/config/embeddings:/app/embeddings | ||
logging: | ||
driver: json-file | ||
options: | ||
max-file: "3" # number of files or file count | ||
max-size: '10m' | ||
networks: | ||
- super_network | ||
### Uncomment the following lines to run the container using the host machine's GPU resources | ||
deploy: | ||
resources: | ||
reservations: | ||
devices: | ||
- driver: nvidia | ||
# count: "all" | ||
device_ids: ['0', '1'] # must comment the above line if this line is uncommented. | ||
capabilities: [gpu] | ||
|
||
|
||
super__redis: | ||
image: "docker.io/library/redis:latest" | ||
networks: | ||
- super_network | ||
|
||
super__postgres: | ||
image: "docker.io/library/postgres:latest" | ||
environment: | ||
- POSTGRES_USER=superagi | ||
- POSTGRES_PASSWORD=password | ||
- POSTGRES_DB=super_agi_main | ||
volumes: | ||
- superagi_postgres_data:/var/lib/postgresql/data/ | ||
networks: | ||
- super_network | ||
ports: | ||
- "5432:5432" | ||
|
||
networks: | ||
super_network: | ||
driver: bridge | ||
|
||
volumes: | ||
superagi_postgres_data: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.