Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
cd136fb2
Unverified
Commit
cd136fb2
authored
Jun 13, 2023
by
John Wang
Committed by
GitHub
Jun 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add WEAVIATE_BATCH_SIZE (#349)
parent
6a3ab361
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
.env.example
api/.env.example
+1
-0
config.py
api/config.py
+2
-0
vector_store.py
api/core/vector_store/vector_store.py
+2
-1
weaviate_vector_store_client.py
api/core/vector_store/weaviate_vector_store_client.py
+4
-4
No files found.
api/.env.example
View file @
cd136fb2
...
...
@@ -72,6 +72,7 @@ VECTOR_STORE=weaviate
WEAVIATE_ENDPOINT=http://localhost:8080
WEAVIATE_API_KEY=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih
WEAVIATE_GRPC_ENABLED=false
WEAVIATE_BATCH_SIZE=100
# Qdrant configuration, use `path:` prefix for local mode or `https://your-qdrant-cluster-url.qdrant.io` for remote mode
QDRANT_URL=path:storage/qdrant
...
...
api/config.py
View file @
cd136fb2
...
...
@@ -43,6 +43,7 @@ DEFAULTS = {
'SENTRY_TRACES_SAMPLE_RATE'
:
1.0
,
'SENTRY_PROFILES_SAMPLE_RATE'
:
1.0
,
'WEAVIATE_GRPC_ENABLED'
:
'True'
,
'WEAVIATE_BATCH_SIZE'
:
100
,
'CELERY_BACKEND'
:
'database'
,
'PDF_PREVIEW'
:
'True'
,
'LOG_LEVEL'
:
'INFO'
,
...
...
@@ -138,6 +139,7 @@ class Config:
self
.
WEAVIATE_ENDPOINT
=
get_env
(
'WEAVIATE_ENDPOINT'
)
self
.
WEAVIATE_API_KEY
=
get_env
(
'WEAVIATE_API_KEY'
)
self
.
WEAVIATE_GRPC_ENABLED
=
get_bool_env
(
'WEAVIATE_GRPC_ENABLED'
)
self
.
WEAVIATE_BATCH_SIZE
=
int
(
get_env
(
'WEAVIATE_BATCH_SIZE'
))
# qdrant settings
self
.
QDRANT_URL
=
get_env
(
'QDRANT_URL'
)
...
...
api/core/vector_store/vector_store.py
View file @
cd136fb2
...
...
@@ -27,7 +27,8 @@ class VectorStore:
self
.
_client
=
WeaviateVectorStoreClient
(
endpoint
=
app
.
config
[
'WEAVIATE_ENDPOINT'
],
api_key
=
app
.
config
[
'WEAVIATE_API_KEY'
],
grpc_enabled
=
app
.
config
[
'WEAVIATE_GRPC_ENABLED'
]
grpc_enabled
=
app
.
config
[
'WEAVIATE_GRPC_ENABLED'
],
batch_size
=
app
.
config
[
'WEAVIATE_BATCH_SIZE'
]
)
elif
self
.
_vector_store
==
'qdrant'
:
self
.
_client
=
QdrantVectorStoreClient
(
...
...
api/core/vector_store/weaviate_vector_store_client.py
View file @
cd136fb2
...
...
@@ -18,10 +18,10 @@ from llama_index.readers.weaviate.utils import (
class
WeaviateVectorStoreClient
(
BaseVectorStoreClient
):
def
__init__
(
self
,
endpoint
:
str
,
api_key
:
str
,
grpc_enabled
:
bool
):
self
.
_client
=
self
.
init_from_config
(
endpoint
,
api_key
,
grpc_enabled
)
def
__init__
(
self
,
endpoint
:
str
,
api_key
:
str
,
grpc_enabled
:
bool
,
batch_size
:
int
):
self
.
_client
=
self
.
init_from_config
(
endpoint
,
api_key
,
grpc_enabled
,
batch_size
)
def
init_from_config
(
self
,
endpoint
:
str
,
api_key
:
str
,
grpc_enabled
:
bool
):
def
init_from_config
(
self
,
endpoint
:
str
,
api_key
:
str
,
grpc_enabled
:
bool
,
batch_size
:
int
):
auth_config
=
weaviate
.
auth
.
AuthApiKey
(
api_key
=
api_key
)
weaviate
.
connect
.
connection
.
has_grpc
=
grpc_enabled
...
...
@@ -36,7 +36,7 @@ class WeaviateVectorStoreClient(BaseVectorStoreClient):
client
.
batch
.
configure
(
# `batch_size` takes an `int` value to enable auto-batching
# (`None` is used for manual batching)
batch_size
=
100
,
batch_size
=
batch_size
,
# dynamically update the `batch_size` based on import speed
dynamic
=
True
,
# `timeout_retries` takes an `int` value to retry on time outs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment