Inference
Describe a model
Get a description of a model hosted by Pinecone.
You can use hosted models as an integrated part of Pinecone operations or for standalone embedding and reranking. For more details, see Vector embedding and Rerank results.
get/models/{model_name}
Path parameters
model_namestring required
The name of the model to look up.
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Response
The model details.
Example response
{
"model": "multilingual-e5-large",
"short_description": "multilingual-e5-large",
"type": "embed",
"default_dimension": 1024,
"modality": "text",
"max_sequence_length": 512,
"max_batch_size": 96,
"provider_name": "NVIDIA",
"supported_dimensions": [
1024
],
"supported_parameters": [
{
"parameter": "input_type",
"type": "one_of",
"value_type": "string",
"required": true,
"min": 1,
"max": 1
}
]
}