Download the PHP package answear/wide-eyes-bundle without Composer
On this page you can find all versions of the php package answear/wide-eyes-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package wide-eyes-bundle
Wide Eyes Bundle
Wide Eyes integration for Symfony.
Documentation of the API can be found here: https://wideeyes.ai/.
Installation
- install with Composer
Answear\WideEyesBundle\AnswearWideEyesBundle::class => ['all' => true],
should be added automatically to your config/bundles.php
file by Symfony Flex.
Setup
- provide required config data:
privateKey
config will be passed to \Answear\WideEyesBundle\Service\ConfigProvider
class.
Usage
Similar recommendations
For similar recommendations use SimilarClient
and its method getSimilar
.
Your agruments are: uid
- your unique id for product and country
- country for which products your asking.
In result you're getting SimilarResponse
that has getUids
method - with similar uids returned by api.
Search by image
For search by image use SearchByImageClient
.
Detect and features
To detect products on image and find theirs features use detectAndFeatures
Your agrument is: url
- url to the image on which you want to detect products and features.
In result you're getting DetectAndFeaturesResponse
that contains all detection returned by api.
Search by feature
To search products with previously found feature use searchByFeature
Your agruments are:
featureId
- featureId you got form DetectAndFeatureslabel
- label you got form DetectAndFeaturesgender
- gender you got from DetectAndFeatures (optional)filters
- result filters (optional)maxNumResults
- maximal number of return products (optional)
In result you're getting SearchByFeatureResponse
that contains all found products uids meeting your criteria.
Final notes
Feel free to open pull requests with new features, improvements or bug fixes. The Answear team will be grateful for any comments.
All versions of wide-eyes-bundle with dependencies
ext-json Version *
webmozart/assert Version ^1.11
guzzlehttp/guzzle Version ^7.0
symfony/http-kernel Version ^6.0|^7.0