Skip to content

Commit 2b42ccf

Browse files
more edits
1 parent f3200da commit 2b42ccf

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

modules/ROOT/pages/constraints/managing-constraints.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,6 @@ The allowed property types for property type constraints are:
401401
* `ZONED DATETIME`
402402
* `DURATION`
403403
* `POINT`
404-
* `VECTOR<TYPE>(DIMENSION)` label:new[Introduced in Neo4j 2025.mm]
405404
* `LIST<BOOLEAN NOT NULL>`
406405
* `LIST<STRING NOT NULL>`
407406
* `LIST<INTEGER NOT NULL>`

modules/ROOT/pages/genai-integrations.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ If you want to generate many embeddings at once, use xref:genai-integrations.ado
6868

6969
[role=label--new-2025.xx label--enterprise-edition]
7070
[[store-single-embedding-vector]]
71-
=== Store a single embedding as a vector property
71+
=== Store a single embedding as a VECTOR property
7272

7373
`genai.vector.encode()` returns a `LIST<FLOAT>`.
74-
To convert this value to a xref:values-and-types/vector.adoc[`VECTOR` value], use the xref:functions/vector.adoc#functions-vector[`vector()`] function.
74+
To convert and store this value as a xref:values-and-types/vector.adoc[`VECTOR` property type], use the xref:functions/vector.adoc#functions-vector[`vector()`] function.
7575

7676
.Signature for `vector()` label:function[]
7777
[source]
@@ -113,9 +113,9 @@ This result only shows the first 4 of the 1536 numbers in the embedding.
113113
====
114114

115115
[[store-single-embedding-list-float]]
116-
=== Store a single embedding as a list of floats property
116+
=== Store a single embedding as a LIST<FLOAT> property
117117

118-
Use the `db.create.setNodeVectorProperty` procedure to store an embedding as `LIST<FLOAT>` value to a node property.
118+
Use the `db.create.setNodeVectorProperty` procedure to store an embedding as a `LIST<FLOAT>` value to a node property.
119119

120120
.Signature for `db.create.setNodeVectorProperty` label:procedure[]
121121
[source,syntax]
@@ -204,10 +204,10 @@ Each returned row contains the following columns:
204204

205205
[[store-multiple-embeddings-vector]]
206206
[role=label--new-2025.xx label--enterprise-edition]
207-
=== Store multiple embeddings as vector properties
207+
=== Store multiple embeddings as VECTOR property values
208208

209-
`genai.vector.encodeBatch()` returns a `LIST<FLOAT>` `vector` value.
210-
To convert this value to a xref:values-and-types/vector.adoc[`VECTOR` value], use the xref:functions/vector.adoc#functions-vector[`vector()`] function.
209+
`genai.vector.encodeBatch()` returns a `LIST<FLOAT>` value.
210+
To convert and store this value as a xref:values-and-types/vector.adoc[`VECTOR` property type], use the xref:functions/vector.adoc#functions-vector[`vector()`] function.
211211
The full function signature can be seen xref:genai-integrations.adoc#store-single-embedding-vector[above].
212212

213213
.Create embeddings from a limited number of properties and store them as `VECTOR` properties
@@ -266,9 +266,9 @@ For an alternative method more suitable to processing large amounts of data, see
266266
====
267267

268268
[[store-multiple-embeddings-list-float]]
269-
=== Store multiple embeddings as list of floats properties
269+
=== Store multiple embeddings as `LIST<FLOAT>` properties
270270

271-
Use the `db.create.setNodeVectorProperty` procedure to store an embedding as `LIST<FLOAT>` value to a node property.
271+
Use the `db.create.setNodeVectorProperty` procedure to store an embedding as a `LIST<FLOAT>` value to a node property.
272272
Use the `db.create.setRelationshipVectorProperty` procedure to store an embedding as a `LIST<FLOAT>` value to a relationship property.
273273
The full procedure signatures can be seen xref:genai-integrations.adoc#store-single-embedding-list-float[above].
274274

0 commit comments

Comments
 (0)