this is my function and when i pass the dimension in parameters as 2048 it still create embedding of 1024, in docs i cant see where to pass dimension parameter, so i have kept it in parameters
async def embeddings(inputs: list, embedding_model: str = "llama-text-embed-v2" , input_type:str = "passage", truncate:str = "END", dimension: int = 2048):
payload = {
"model": embedding_model,
"parameters": {
"input_type": input_type,
"truncate": truncate,
"dimension": dimension
},
"inputs": inputs
}
headers = {
"Api-Key": os.getenv("PINECONE_API_KEY"),
"Content-Type": "application/json",
"X-Pinecone-API-Version": "2025-01"
}
url = "https://api.pinecone.io/embed"
async with httpx.AsyncClient() as client:
response = await client.post(url, headers=headers, json=payload)
response.raise_for_status()
print("embeddings generated")
return response.json()