Skip to content

Commit c45faec

Browse files
Remove GenAI docs from cypher manual; they will be available at neo4j.com/docs/genai/plugin/
1 parent 4df90d7 commit c45faec

File tree

7 files changed

+274
-445
lines changed

7 files changed

+274
-445
lines changed

modules/ROOT/content-nav.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@
9898
** xref:functions/user-defined.adoc[]
9999
** xref:functions/vector.adoc[]
100100
101-
* xref:genai-integrations.adoc[]
102101
* xref:indexes/index.adoc[]
103102
** xref:indexes/search-performance-indexes/index.adoc[]
104103
*** xref:indexes/search-performance-indexes/managing-indexes.adoc[]

modules/ROOT/pages/appendix/gql-conformance/additional-cypher.adoc

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -183,19 +183,6 @@ REMOVE n:$($label)
183183

184184
|===
185185

186-
[[genai-functions]]
187-
=== GenAI functions
188-
189-
[options="header", cols="2a,5a"]
190-
|===
191-
| Cypher feature
192-
| Description
193-
194-
| xref:genai-integrations.adoc#single-embedding[`genai.vector.encode()`]
195-
| Generates a vector embedding for a single value.
196-
197-
|===
198-
199186

200187
[[graph-functions]]
201188
=== Graph functions

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1133,7 +1133,7 @@ label:new[]
11331133
* `"textembedding-gecko@003"`
11341134
* `"textembedding-gecko-multilingual@001"`
11351135

1136-
| Added support for additional xref:genai-integrations.adoc#ai-providers[Vertex AI] vector encoding models.
1136+
| Added support for more Vertex AI vector encoding models in link:https://neo4j.com/docs/genai/plugin/5/[GenAI plugin].
11371137
Also added support for Vertex AI `taskType` and `title` embedding parameters.
11381138
|===
11391139

modules/ROOT/pages/functions/index.adoc

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -82,23 +82,12 @@ Database functions provide information about databases.
8282
[options="header"]
8383
|===
8484
| Function | Signature | Description
85-
1.1+| xref:functions/database.adoc#functions-database-nameFromElementId[`db.nameFromElementId()`]
85+
1.1+| xref:functions/database.adoc#functions-database-nameFromElementId[`db.nameFromElementId()`]
8686
| `db.nameFromElementId(elementId :: STRING) :: STRING`
8787
| Resolves the database name from the given element id.
8888
|===
8989

9090

91-
[role=label--new-5.12]
92-
[[header-query-functions-genai]]
93-
== GenAI functions
94-
95-
[options="header"]
96-
|===
97-
| Function | Signature | Description
98-
1.1+| xref:genai-integrations.adoc#single-embedding[`genai.vector.encode()`] | `genai.vector.encode(resource :: STRING, provider :: STRING, configuration :: MAP = {}) :: LIST<FLOAT>` | Encode a given resource as a vector using the named provider.
99-
|===
100-
101-
10291
[[header-query-functions-graph]]
10392
== Graph functions
10493

@@ -108,7 +97,7 @@ Graph functions provide information about the constituent graphs in composite da
10897
|===
10998
| Function | Signature | Description
11099
1.1+| xref:functions/graph.adoc#functions-graph-by-elementid[`graph.byElementId()`]
111-
| `USE graph.byElementId(elementId :: STRING)`
100+
| `USE graph.byElementId(elementId :: STRING)`
112101
| Resolves the constituent graph to which a given element id belongs.
113102
label:new[Introduced in 5.13]
114103
1.1+| xref:functions/graph.adoc#functions-graph-byname[`graph.byName()`] | `USE graph.byName(name :: STRING)` | Resolves a constituent graph by name.
@@ -357,7 +346,7 @@ These functions return either true or false for the given arguments.
357346
1.1+| xref::functions/predicate.adoc#functions-all[`all()`]
358347
| `all(variable :: ANY, list :: LIST<ANY>, predicate :: ANY) :: BOOLEAN`
359348
| Returns true if the predicate holds for all elements in the given `LIST<ANY>`.
360-
349+
361350
1.1+| xref::functions/predicate.adoc#functions-any[`any()`]
362351
| `any(variable :: ANY, list :: LIST<ANY>, predicate :: ANY) :: BOOLEAN`
363352
| Returns true if the predicate holds for at least one element in the given `LIST<ANY>`.
@@ -559,7 +548,7 @@ These functions are used to manipulate `STRING` values or to create a `STRING` r
559548

560549
1.1+| xref::functions/string.adoc#functions-trim[`trim()`]
561550
| `trim(trimCharacterString :: STRING, trimSpecification :: STRING, input :: STRING) :: STRING`
562-
| Returns the given `STRING` with the leading and/or trailing `trimCharacterString` character removed.
551+
| Returns the given `STRING` with the leading and/or trailing `trimCharacterString` character removed.
563552

564553
1.1+| xref::functions/string.adoc#functions-upper[`upper()`]
565554
| `upper(input :: STRING) :: STRING`

0 commit comments

Comments
 (0)