mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-23 09:00:40 +00:00

* add weaviate docker compose * added staging brick and tests for weaviate * initial notebook and requirements file * add commentary to weaviate notebook * weaviate readme * update docs * version and change log * install weaviate client * install weaviate; skip for docker * linting, linting, linting * install weaviate client with deps * comments on weaviate client * fix module not found error for docker container * skipped wrong test in docker * fix typos * add in local-inference
21 lines
715 B
YAML
21 lines
715 B
YAML
version: '3.4'
|
|
services:
|
|
weaviate:
|
|
image: semitechnologies/weaviate:1.19.6
|
|
restart: on-failure:0
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
QUERY_DEFAULTS_LIMIT: 20
|
|
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
|
|
PERSISTENCE_DATA_PATH: "./data"
|
|
DEFAULT_VECTORIZER_MODULE: text2vec-transformers
|
|
ENABLE_MODULES: text2vec-transformers
|
|
TRANSFORMERS_INFERENCE_API: http://t2v-transformers:8080
|
|
CLUSTER_HOSTNAME: 'node1'
|
|
t2v-transformers:
|
|
image: semitechnologies/transformers-inference:sentence-transformers-multi-qa-MiniLM-L6-cos-v1
|
|
environment:
|
|
ENABLE_CUDA: 0 # set to 1 to enable
|
|
# NVIDIA_VISIBLE_DEVICES: all # enable if running with CUDA
|