Skip to content

Commit 76c9c26

Browse files
committed
ref
1 parent aa28ae0 commit 76c9c26

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ai-bundle/config/options.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@
621621
->stringNode('collection_name')->cannotBeEmpty()->end()
622622
->integerNode('dimensions')->end()
623623
->stringNode('distance')->end()
624-
->booleanNode('async')->defaultFalse()->end()
624+
->booleanNode('async')->end()
625625
->end()
626626
->end()
627627
->end()

src/store/src/Bridge/Qdrant/Store.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ public function __construct(
3131
private readonly string $endpointUrl,
3232
#[\SensitiveParameter] private readonly string $apiKey,
3333
private readonly string $collectionName,
34-
private readonly ?int $embeddingsDimension = 1536,
35-
private readonly ?string $embeddingsDistance = 'Cosine',
36-
private readonly ?bool $async = false,
34+
private readonly int $embeddingsDimension = 1536,
35+
private readonly string $embeddingsDistance = 'Cosine',
36+
private readonly bool $async = false,
3737
) {
3838
}
3939

0 commit comments

Comments
 (0)