To expose AI services to our system, we need an API to be exposed for the MediaHaven installation.
The contract of this API is as follows (anything can be added before the path):
GET /config-rules
It gives the possible configuration parameters for this connector
Ex.
{ "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.
{ "Text": "Given me pictures of lamas", "Config": { "TextModel" : "ada2" } }
Expected headers:
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
Ex.
{ "Config": { "TextModel" : "ada2" }, "Metadata": { "RightsManagement": { "Permissions": {...}, "RecordPhase": "Concept", "ExpiryDate": null, "ExpiryStatus": null, "Zone": {} } } }
Expected headers:
x-api-key: <optional api key>
Output
Array of float (vector) with size equal to dimensions. The vector is normalized
Ex.
{ "Embedding": [ -0.006929283495992422, -0.005336422007530928, ... (omitted for spacing) -4.547132266452536e-05, -0.024047505110502243] }
POST /describe
POST /generative-metadata/description
Expected parameters:
Record as JSON body in Metadata
property and Config
based on config rules
Ex.
{ "Config": { "TextModel" : "ada2" }, "Metadata": { "RightsManagement": { "Permissions": {...}, "RecordPhase": "Concept", "ExpiryDate": null, "ExpiryStatus": null, "Zone": {} } } }
Expected headers:
x-api-key: <optional api key>
Output
Textual string
Ex.
{ "Description": "This is an image of a cat" }
POST /generative-metadata
Record as JSON body in Metadata
property, Fields
with as items dotted keys and AI hint as value, Locale
as the requested target locale for the output and finally Config
based on config rules
Ex.
{ "Fields": { "Descriptive.Description": "Give a description for the image" }, "Locale": "en_US", "Config": { "TextModel" : "ada2" }, "Metadata": { "RightsManagement": { "Permissions": {...}, "RecordPhase": "Concept", "ExpiryDate": null, "ExpiryStatus": null, "Zone": {} } } }
Expected headers:
x-api-key: <optional api key>
Output
Follow the input fields, the same structure should be returned
Ex:
{ "Metadata": { "Descriptive.Description": "This is an image of a cat" } }