π»Inserting with API - encoding while inserting (recommended)
A guide to encoding while inserting
If you are looking to encode while inserting, then you will need a deployed model or rely on one of Vector AI's models. The main advantage of this is that you can immediately get your deployment to start working. You can take a look at the following for inserting and encoding.
import requests
url = "https://vectorai-development-api.azurewebsites.net/collection/insert_and_encode"
requests.post(
url=url,
json={
"username": username,
"api_key": api_key,
"collection_name": collection_name,
"documents": documents,
"encoders": [
]
}
)
Last updated
Was this helpful?