...
Code Block |
---|
|
{
"Rules": [
{
"Name": "TextModel",
"Type": "String|Integer|Boolean",
"Required": false,
"Default" : "ada2"
}
]
} |
POST /text-embedding
Expected parameters:
Text as json body in Text
property and Config
based on config rules
Ex.
Code Block |
---|
|
{
"Text": "Given me pictures of lamas",
"Config": {
"TextModel" : "ada2"
}
} |
Code Block |
---|
x-api-key: <optional api key> |
Output
Array of float (vector) with size equal to dimensions. The vector is normalized
POST /embedding
Expected parameters:
Record as json body in Metadata
property and Config
based on config rules
...
Code Block |
---|
|
{
"Metadata": {
"RightsManagement": {
"Permissions": {
"Export": [
"058b5713-a7d6-45fe-81fc-bcb8b1925fbf",
"dd100b7a-efd0-44e3-8816-0905572421da",
"da100b7a-efd0-44e3-8816-0905572421da"
],
"Write": [
"058b5713-a7d6-45fe-81fc-bcb8b1925fbf",
"dd100b7a-efd0-44e3-8816-0905572421da",
"da100b7a-efd0-44e3-8816-0905572421da"
],
"Read": [
"058b5713-a7d6-45fe-81fc-bcb8b1925fbf",
"dd100b7a-efd0-44e3-8816-0905572421da",
"330060ae-548c-474f-a863-9673fdf99458",
"de100b7a-efd0-44e3-8816-0905572421da",
"df100b7a-efd0-44e3-8816-0905572421da",
"da100b7a-efd0-44e3-8816-0905572421da"
]
},
"RecordPhase": "Concept",
"ExpiryDate": null,
"ExpiryStatus": null,
"Zone": {}
}
},
"Config": {
"TextModel" : "ada2"
}
} |
Code Block |
---|
x-api-key: <optional api key> |
Output
Array of float (vector) with size equal to dimensions. The vector is normalized
...
Code Block |
---|
|
{ "Embedding": [
-0.006929283495992422,
-0.005336422007530928,
... (omitted for spacing)
-4.547132266452536e-05,
-0.024047505110502243
]
} |
POST /describe
Expected parameters:
Record as json body in Metadata
property and Config
based on config rules
...
Code Block |
---|
|
{
"Metadata": {
"RightsManagement": {
"Permissions": {
"Export": [
"058b5713-a7d6-45fe-81fc-bcb8b1925fbf",
"dd100b7a-efd0-44e3-8816-0905572421da",
"da100b7a-efd0-44e3-8816-0905572421da"
],
"Write": [
"058b5713-a7d6-45fe-81fc-bcb8b1925fbf",
"dd100b7a-efd0-44e3-8816-0905572421da",
"da100b7a-efd0-44e3-8816-0905572421da"
],
"Read": [
"058b5713-a7d6-45fe-81fc-bcb8b1925fbf",
"dd100b7a-efd0-44e3-8816-0905572421da",
"330060ae-548c-474f-a863-9673fdf99458",
"de100b7a-efd0-44e3-8816-0905572421da",
"df100b7a-efd0-44e3-8816-0905572421da",
"da100b7a-efd0-44e3-8816-0905572421da"
]
},
"RecordPhase": "Concept",
"ExpiryDate": null,
"ExpiryStatus": null,
"Zone": {}
}
},
"Config": {
"TextModel" : "ada2"
}
} |
Code Block |
---|
x-api-key: <optional api key> |
Output
Textual string
Ex.
Code Block |
---|
|
{ "Description": This is an image of a cat"} |
...