starpoint sdk
python-0.7.0
pip install starpoint
StarpointアカウントにAPIキーとコレクションが作成された後
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" )開発要件をインストールしていることを確認してください
pip install -r dev-requirements.txt
ユニットテストが通過しているはずです。経由で実行できます
pytest ./tests