Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
services:
|
|
openwebui:
|
|
image: ghcr.io/open-webui/open-webui:main
|
|
ports:
|
|
- 127.0.0.1:4242:4242
|
|
restart: on-failure:3
|
|
volumes:
|
|
- ./examples/gaia/openwebui-patch/ca81bd47c050_add_config_table.py:/app/backend/open_webui/migrations/versions/ca81bd47c050_add_config_table.py
|
|
- ./examples/gaia/GAIA:/app/aworld/examples/gaia/GAIA
|
|
environment:
|
|
- HF_HUB_OFFLINE=1
|
|
- ENABLE_OLLAMA_API=False
|
|
- ENABLE_DIRECT_CONNECTIONS=False
|
|
- ENABLE_EVALUATION_ARENA_MODELS=False
|
|
- ENABLE_TITLE_GENERATION=False
|
|
- ENABLE_AUTOCOMPLETE_GENERATION=False
|
|
- ENABLE_TAGS_GENERATION=False
|
|
- OPENAI_API_BASE_URL=http://gaia_agent:8888/v1
|
|
- OPENAI_API_KEY=xxx
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 2G
|
|
|
|
gaia_agent:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile_gaia
|
|
platform: linux/amd64
|
|
ports:
|
|
- 127.0.0.1:8888:8888
|
|
volumes:
|
|
- ./.env:/app/aworld/.env
|
|
env_file:
|
|
- ./.env
|
|
restart: on-failure:3
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4G
|