starpoint sdk
python-0.7.0
pip install starpoint
Después de tener una clave API y una colección creada en su cuenta de Starpoint
from starpoint . db import Client
client = Client ( api_key = "YOUR_API_KEY_HERE" )
documents = [
{
"embeddings" : [ 0.1 , 0.2 , 0.3 , 0.4 , 0.5 ],
"metadata" : {
"label1" : "0" ,
"label2" : "1" ,
}
},
]
// Instead of collection_name you can also use collection_id = "COLLECTION_ID"
client . insert ( documents = documents , collection_name = "COLLECTION_NAME" )Asegúrese de tener requisitos de desarrollo instalados
pip install -r dev-requirements.txt
Las pruebas unitarias deberían pasar. Puedes ejecutarlos a través de
pytest ./tests