File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
contracts/Search/FieldType
lib/Resources/settings/search_engines
tests/integration/Core/Search/FieldType Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ private function __construct(string $type)
16
16
}
17
17
18
18
/**
19
- * @param string $type Has to be handled by configured search engine (ez_dense_vector_ada002 ).
19
+ * @param string $type Has to be handled by configured search engine (ibexa_dense_vector_ada002 ).
20
20
*/
21
21
public static function create (string $ type ): self
22
22
{
Original file line number Diff line number Diff line change @@ -25,6 +25,6 @@ public function create(?string $type = null): EmbeddingField
25
25
26
26
$ suffix = $ this ->config ->getDefaultEmbeddingModelFieldSuffix ();
27
27
28
- return EmbeddingField::create ('ez_dense_vector_ ' . $ suffix );
28
+ return EmbeddingField::create ('ibexa_dense_vector_ ' . $ suffix );
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ parameters:
22
22
ez_geolocation : ' gl'
23
23
ez_document : ' doc'
24
24
ez_fulltext : ' fulltext'
25
- ez_dense_vector_ada002 : ' ada002_dv'
26
- ez_dense_vector_3small : ' 3small_dv'
27
- ez_dense_vector_3large : ' 3large_dv'
25
+ ibexa_dense_vector_ada002 : ' ada002_dv'
26
+ ibexa_dense_vector_3small : ' 3small_dv'
27
+ ibexa_dense_vector_3large : ' 3large_dv'
28
28
29
29
services :
30
30
# Note: services tagged with 'ibexa.field_type.indexable'
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ public function testCreateUsesConfigSuffix(): void
26
26
$ field = $ factory ->create ();
27
27
28
28
$ this ->assertSame (
29
- 'ez_dense_vector_model_123 ' ,
29
+ 'ibexa_dense_vector_model_123 ' ,
30
30
$ field ->getType (),
31
- 'Factory should prepend "ez_dense_vector_ " to the suffix from theconfig '
31
+ 'Factory should prepend "ibexa_dense_vector_ " to the suffix from the config '
32
32
);
33
33
}
34
34
You can’t perform that action at this time.
0 commit comments