No project description provided
Project description
Example
from mars_text_embedding_sdk_python import EmbeddingSDK, KeyValue, Object
## Create the caller object to end point
sdk = EmbeddingSDK("http://127.0.0.1:4000/graphql")
## Create objects consisting of KeyValues
objects = [
Object(
key_values=[
KeyValue(key="hello", value="world"),
KeyValue(key="hello", value="world"),
KeyValue(key="you", value="are"),
],
),
Object(
key_values=[
KeyValue(key="you", value="are"),
KeyValue(key="cool", value="beans"),
KeyValue(key="cool", value="beans"),
]
)
]
# Make the call and extract data
# If something goes wrong here, check the .error property instead. .data will be None.
emb_comp = sdk(objects, dims=300).data
# Now, use to_arrays aggregation function to, for instance, aggregate embeddings to their mean
arrs = emb_comp.to_arrays(lambda x: x.mean(axis=0))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mars_text_embedding_sdk_python-0.2.6.tar.gz.
File metadata
- Download URL: mars_text_embedding_sdk_python-0.2.6.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.9.18 Darwin/23.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3045d80fc48c02ca5376cce537d33aafbd9853f11fbe16aa80ec5c197a8080ad
|
|
| MD5 |
6036e6c13fa2516647aa07bde798db57
|
|
| BLAKE2b-256 |
3589dd30274331c40d49cdadc24fdf1d8705a033f3d8008abdb91b93c6b39fd0
|
File details
Details for the file mars_text_embedding_sdk_python-0.2.6-py3-none-any.whl.
File metadata
- Download URL: mars_text_embedding_sdk_python-0.2.6-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.9.18 Darwin/23.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ac571f563ae815f6802963d46ea92a88f29fbfabde1c8c30ba9aa402078e66f
|
|
| MD5 |
ab511342426a734fbd6d862f11a45c8e
|
|
| BLAKE2b-256 |
e87fe44ae00dd0edca720b7b4e174961965adcfa684ab1c9f5cae4e7f90e066b
|