Skip to content

Latest commit

 

History

History
68 lines (46 loc) · 2.19 KB

VectorSearchQueriesApi.md

File metadata and controls

68 lines (46 loc) · 2.19 KB

Wordlift\Client\VectorSearchQueriesApi

All URIs are relative to https://api.wordlift.io, except if the operation defines another base path.

Method HTTP request Description
createQuery() POST /vector-search/queries Create

createQuery()

createQuery($vector_search_query_request): \Wordlift\Client\Model\PageVectorSearchQueryResponseItem

Create

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');


// Configure API key authorization: ApiKey
$config = Wordlift\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Wordlift\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');


$apiInstance = new Wordlift\Client\Api\VectorSearchQueriesApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$vector_search_query_request = new \Wordlift\Client\Model\VectorSearchQueryRequest(); // \Wordlift\Client\Model\VectorSearchQueryRequest

try {
    $result = $apiInstance->createQuery($vector_search_query_request);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling VectorSearchQueriesApi->createQuery: ', $e->getMessage(), PHP_EOL;
}

Parameters

Name Type Description Notes
vector_search_query_request \Wordlift\Client\Model\VectorSearchQueryRequest

Return type

\Wordlift\Client\Model\PageVectorSearchQueryResponseItem

Authorization

ApiKey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]