Download the PHP package tenqz/qdrant without Composer

On this page you can find all versions of the php package tenqz/qdrant. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package qdrant

Qdrant PHP Client

A simple PHP library for Qdrant vector database

Build Status Total Downloads Latest Stable Version License

๐Ÿ“– About

Qdrant PHP Client is a simple and easy library for working with Qdrant vector database. It helps you store and search vectors (embeddings) for AI and machine learning applications.

Version 1.0.0 includes complete API support for collections, points, search, and recommendations.

โœจ Features

๐Ÿ“‹ Requirements

๐Ÿ“ฆ Installation

Install via Composer:

๐Ÿš€ Quick Start

See examples/README.md for complete examples of all features.

๐Ÿ“š API Methods

Collections

Method Description Example
createCollection() Create new collection $client->createCollection('my_vectors', 128, 'Cosine')
getCollection() Get collection info $client->getCollection('my_vectors')
listCollections() List all collections $client->listCollections()
deleteCollection() Delete collection $client->deleteCollection('my_vectors')

Points Operations

Method Description Example
upsertPoints() Add or update points $client->upsertPoints('my_vectors', $points)
getPoint() Get one point by ID $client->getPoint('my_vectors', 1)
getPoints() Get multiple points $client->getPoints('my_vectors', [1, 2, 3])
deletePoints() Delete points $client->deletePoints('my_vectors', [1, 2, 3])
setPayload() Update point metadata $client->setPayload('my_vectors', ['new' => true], [1, 2])
deletePayload() Delete metadata fields $client->deletePayload('my_vectors', ['old_field'], [1, 2])
scroll() Get points page by page $client->scroll('my_vectors', 100)
countPoints() Count points $client->countPoints('my_vectors')

Search & Recommendations

Method Description Example
search() Find similar vectors $client->search('my_vectors', [0.1, 0.2], 10)
searchBatch() Multiple searches at once $client->searchBatch('my_vectors', [$query1, $query2])
recommend() Get recommendations $client->recommend('my_vectors', [1, 5], [3], 10)

๐Ÿ’ก Examples

See examples/basicUsage.php for complete examples of:

Run the example:

๐Ÿ›ก๏ธ Error Handling

Error Types

๐Ÿงช Testing

Run tests:

๐Ÿ“– Documentation

๐Ÿค Contributing

Contributions are welcome! Please see CONTRIBUTING.md for detailed guidelines.

Quick steps:

  1. Fork the repository
  2. Create a feature branch
  3. Write tests for new features
  4. Submit a pull request

๐Ÿ“„ License

MIT License. See LICENSE for details.

๐Ÿ“ž Contact

Author: Oleg Patsay
Email: [email protected]
GitHub: tenqz/qdrant


โญ Like this project? Give it a star on GitHub!


All versions of qdrant with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2|^8.0
ext-curl Version *
ext-json Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tenqz/qdrant contains the following files

Loading the files please wait ...