thiemcun203 commited on
Commit
ade2d69
·
verified ·
1 Parent(s): cf2aa97

Upload 3 files

Browse files
Files changed (3) hide show
  1. docker-compose.yml +29 -0
  2. requirements.txt +6 -0
  3. retriever.ipynb +0 -0
docker-compose.yml ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ version: '3.4'
3
+ services:
4
+ weaviate:
5
+ command:
6
+ - --host
7
+ - 0.0.0.0
8
+ - --port
9
+ - '8080'
10
+ - --scheme
11
+ - http
12
+ image: cr.weaviate.io/semitechnologies/weaviate:1.26.1
13
+ ports:
14
+ - 8080:8080
15
+ - 50051:50051
16
+ volumes:
17
+ - weaviate_data:/var/lib/weaviate
18
+ restart: on-failure:0
19
+ environment:
20
+ QUERY_DEFAULTS_LIMIT: 25
21
+ AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
22
+ QUERY_MAXIMUM_RESULTS: 10000
23
+ PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
24
+ DEFAULT_VECTORIZER_MODULE: 'none'
25
+ ENABLE_API_BASED_MODULES: 'true'
26
+ CLUSTER_HOSTNAME: 'node1'
27
+ volumes:
28
+ weaviate_data:
29
+ ...
requirements.txt ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ weaviate-client==4.7.1
2
+ sentence-transformers==3.0.1
3
+ torch==2.4.0
4
+ pytz==2024.1
5
+ attrs==24.2.0
6
+ gradio==4.42.0
retriever.ipynb ADDED
The diff for this file is too large to render. See raw diff