HIDDB Python SDK
The official SDK for the HIDDB vector database.
Installation
Use the package manager pip to install the SDK.
pip install hiddb
Usage
Create a collection within a database <your database_id>.
from hiddb.synchronous import HIDDB
hiddb = HIDDB("<key>", "<secret>")
# Create a collection named 'wordvectors'
hiddb.create_collection(database_id="<your database_id>", collection_id="wordvectors")
Create an index within this collection:
# Create an index on field 'vector' within the collection and dimension 300
hiddb.create_index(
database_id="<your database_id>",
collection_name='wordvectors',
index_name="vector",
dimension=300
)
Insert documents like that:
document = {
"vector": [0.0]*300,
"id": "my first document"
}
hiddb.insert_document(
database_id=database_id,
collection_name='wordvectors',
documents=[document]
)
Search for nearest documents:
similar_words = hiddb.search_nearest_documents(
database_id="<your database_id>",
collection_name='wordvectors',
index_name="vector",
vectors=[[42.0]*300],
max_neighbors=10
)
More examples and a more detailed documentation will follow soon 🚀
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Release files for hiddb 0.1.10
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| hiddb-0.1.10.tar.gz | 6.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| hiddb-0.1.10-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 13.5 kB
Release files / hiddb-0.1.10.tar.gz
| Download URL | hiddb-0.1.10.tar.gz |
|---|---|
| Size | 6.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6c7b2a320742564f21fb720992ba4cfd76191eaab11b790d852244927561e448
|
|
BLAKE2b-256 checksum How to use checksums |
483066e748745716b80e40664e1529de43ac65325e8e9c6e2976bbc10b6edac4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.13 CPython/3.10.4 Linux/5.15.0-37-generic
|
Release files / hiddb-0.1.10-py3-none-any.whl
| Download URL | hiddb-0.1.10-py3-none-any.whl |
|---|---|
| Size | 7.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
561d54bd1ec593aa7edddb53bd0ebc60f9048baf841edc85b62dbeea54fd3864
|
|
BLAKE2b-256 checksum How to use checksums |
62faa080be6a8090310506a659334004190e3b9fd00788f574e8c01e270c1e00
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.13 CPython/3.10.4 Linux/5.15.0-37-generic
|