From 3a0074832e17d18554a2d51c4ab603047c0a4054 Mon Sep 17 00:00:00 2001 From: Morty <42971559+evil1morty@users.noreply.github.com> Date: Sun, 8 Sep 2024 01:32:50 +0100 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a228d5..fd6b05d 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ composer require hkulekci/qdrant include __DIR__ . "/../vendor/autoload.php"; include_once 'config.php'; +use Qdrant\Qdrant; use Qdrant\Config; use Qdrant\Http\Builder; @@ -135,4 +136,4 @@ $response = $client->collections('contents')->points()->search($searchRequest); foreach ($response['result'] as $item) { echo $item['score'] . ';' . $item['payload']['id'] . ';' . $item['payload']['meta_data'] . PHP_EOL; } -``` \ No newline at end of file +```