Obtenir les informations du magasin de vecteurs

get

Retrieve information about the vector store associated with the API key.

Header parameters
x-api-keystringRequired

The API key for authentication.

Responses
chevron-right
200

Vector store information retrieved successfully.

application/json
idstringOptional

The ID of the vector store.

namestringOptional

The name of the vector store.

descriptionstringOptional

Description of the vector store.

embedding_modelstringOptional

The embedding model used.

indexing_algorithmstringOptional

The indexing algorithm used.

vector_dimensionintegerOptional

The dimension of the vectors.

search_metricstringOptional

The search metric used.

createdstring · date-timeOptional

Creation timestamp.

modifiedstring · date-timeOptional

Modification timestamp.

get
/vector-stores/me
200

Vector store information retrieved successfully.

Exemples de Requêtes

curl -X GET \
  https://api.rememberizer.ai/api/v1/vector-stores/me \
  -H "x-api-key: VOTRE_CLE_API"
circle-info

Remplacez VOTRE_CLE_API par votre véritable clé API de Vector Store.

Format de Réponse

Authentification

Ce point de terminaison nécessite une authentification à l'aide d'une clé API dans l'en-tête x-api-key.

Réponses d'erreur

Code d'état
Description

401

Non autorisé - Clé API invalide ou manquante

404

Non trouvé - Magasin de vecteurs non trouvé

500

Erreur interne du serveur

Ce point de terminaison récupère des informations sur le magasin de vecteurs associé à la clé API fournie. Il est utile pour vérifier les détails de configuration, y compris le modèle d'incorporation, la dimensionnalité et la métrique de recherche utilisée. Ces informations peuvent être précieuses pour optimiser les requêtes de recherche et comprendre les capacités du magasin de vecteurs.

Last updated