moduleConfig vector skip

Description

skip vectorization issue

Any additional Information

In my collection(Article) i set one of the property(title) as skip_vectorization as True , but in my schema output it is giving me as {
“dataType”: [
“text”
],
“indexFilterable”: true,
“indexRangeFilters”: false,
“indexSearchable”: true,
“moduleConfig”: {
“text2vec-openai”: {
“skip”: false,
“vectorizePropertyName”: false
}
},
“name”: “title”,
“tokenization”: “word”
},

why skip under moduleConfig is giving me like false , even though i set skip_vectorization as True , can someone could help me ?

Hey @Selvakumar_S,

Welcome to our community! Great to have you here :partying_face:

Could you please share how you’re creating the collection with me?

Additionally, please confirm the client & WeaviateDB version you are on.

Best regards,
Mohamed Shahin
Weaviate Support Engineer
(Ireland, UTC±00:00/+01:00)

Hey hi @Mohamed_Shahin
My weaviate version is weaviate:1.34.0 and client version is 4.18.1
and here is my collection
client.collections.create(

name=“Article”,

vector_config=Configure.Vectors.text2vec_openai(

model=“text-embedding-3-large”,

vectorize_collection_name=False

),

properties=[

Property(name=“article_id”, data_type=DataType.INT,skip_vectorization=True,vectorize_property_name=False),

Property(name=“article_id_hash”, data_type=DataType.TEXT,skip_vectorization=True,vectorize_property_name=False)\]

)
and my schema output is
{

“dataType”: [

“text”

],

“indexFilterable”: true,

“indexRangeFilters”: false,

“indexSearchable”: true,

“moduleConfig”: {

“text2vec-openai”: {

“skip”: false,

“vectorizePropertyName”: false

}

},

“name”: “article_id_hash”,

“tokenization”: “word”

},

the thing is i have set skip_vectorization as True , then why in my schema output it is coming as skip as false under moduleConfig what is the reason ?

Hi @Selvakumar_S,

I will run a test now on the version and get back to you.

Best regards,
Mohamed Shahin
Weaviate Support Engineer
(Ireland, UTC±00:00/+01:00)

Sure @Mohamed_Shahin

I’ve logged a bug for this here:

I will inform our core engineering as well.

Best regards,
Mohamed Shahin
Weaviate Support Engineer
(Ireland, UTC±00:00/+01:00)

Sure @Mohamed_Shahin and thanks for responding

1 Like