We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fff3445 + 3a00748 commit 81e01e9Copy full SHA for 81e01e9
1 file changed
README.md
@@ -22,6 +22,7 @@ composer require hkulekci/qdrant
22
include __DIR__ . "/../vendor/autoload.php";
23
include_once 'config.php';
24
25
+use Qdrant\Qdrant;
26
use Qdrant\Config;
27
use Qdrant\Http\Builder;
28
@@ -135,4 +136,4 @@ $response = $client->collections('contents')->points()->search($searchRequest);
135
136
foreach ($response['result'] as $item) {
137
echo $item['score'] . ';' . $item['payload']['id'] . ';' . $item['payload']['meta_data'] . PHP_EOL;
138
}
-```
139
+```
0 commit comments