├── .env.example ├── .env.github ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── examples └── .soon ├── index.php ├── phpunit.xml └── src ├── Client.php ├── Contracts └── ClientContract.php ├── Factory.php ├── Pinecone.php ├── Requests ├── Control │ ├── ConfigureIndex.php │ ├── CreateCollection.php │ ├── CreateIndex.php │ ├── DeleteCollection.php │ ├── DeleteIndex.php │ ├── DescribeCollection.php │ ├── DescribeIndex.php │ ├── ListCollections.php │ └── ListIndexes.php ├── Data │ ├── DeleteVectors.php │ ├── FetchVectors.php │ ├── GetIndexStats.php │ ├── QueryVectors.php │ ├── UpdateVector.php │ └── UpsertVectors.php └── Exceptions │ ├── MissingHostException.php │ └── MissingNameException.php ├── Resources ├── Control │ ├── CollectionResource.php │ └── IndexResource.php ├── ControlResource.php ├── Data │ └── VectorResource.php ├── DataResource.php └── Resource.php └── Response.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probots-io/pinecone-php/HEAD/.env.example -------------------------------------------------------------------------------- /.env.github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probots-io/pinecone-php/HEAD/.env.github -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probots-io/pinecone-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probots-io/pinecone-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probots-io/pinecone-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probots-io/pinecone-php/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/.soon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |