Cherrry Semantic Search API SDK
Project description
cherrry-py
Cherrry Python SDK
Installation + API keys
pip package
Install with pip. See it on pypi
pip install cherrry
API Keys
From https://cherrry.com/dashboard/api to get your API Keys
Private Key
Private keys start with ch_prv
keep it secret and never use it client-side. It has service role privilages: it can read + write data.
Public Key
Public keys start with ch_pub
They're intended to be use client-side and have read-only privilages.
Initalize
from cherrry import CherrryClient
initialize the client
client = CherrryClient("your_api_key")
Concepts
Table
A table is a collection of documents.
Document
A document is respresented as a JSON object literal with three fields: text
, image
, and metadata
.
These fields are also JSON object literals, where the keys can be strings with any contents, and their values are also strings.
text
and image
are semantically searchable each by their type respectively. Each document must have either a text
or image
field. It can also have both fields.
metadata
is used to store additional information and for filtering (feature in progress), it is an optional field.
Basic Functions
Create Table
[success, error] = client.create_table("table_name")
Insert a Doc
Documents must be of the following form
{
"text": {
"a name for your text": "your desired text in a string"
},
"image": {
"a name for your image": "a url to your downloadable image"
},
"metadata": {
"key": "value"
}
}
for example:
[data, error] = client.table("recipes").insert({
"text": {
"name": "Octopus Cherry Pie"
},
"image": {
"preview": "https://i.imgur.com/lFC8p0L.jpeg"
},
"metadata": {
"author_name": "Davy Jones",
"author_email": "octo@pus.com"
}
})
Search
[data, error] = client
.table("blogs")
.search({ "prompt": "sea creature desert", "size": 1, "search_type": "image" });
Get Doc by ID
The ID of documents are returned in the responses of /search
or /doc
[data, error] = client.table("blogs").doc("1234")
Delete a Doc
[success, error] = client.table("blogs").delete("1234")
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
File details
Details for the file cherrry-0.0.2.tar.gz
.
File metadata
- Download URL: cherrry-0.0.2.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc5042691b9086676d9faaa66790080f85cc3a73fc34db15807b08d4b949fc08 |
|
MD5 | 9291bd8d77c950d1916282a5047d841f |
|
BLAKE2b-256 | 48ab46c6bf26579d9d98da34142e0fbb89cc64208ab19c012a26c09034686c1b |
File details
Details for the file cherrry-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: cherrry-0.0.2-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e15bb672a1236e663bb9b1bd310e9fe9b85ff66a380215a063ee9f97bfe53a1 |
|
MD5 | 7b979917886f0698e416f35a19ae3a2f |
|
BLAKE2b-256 | 1b3e140cf8fc362c78d94a3865c6c93d6f7c6eee16e6610b1e5505533679fedc |