Models

get

/services/{version}/aiservice/models

Required Role: Operator

Retrieve the AI Service Models.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

get the AI Service Models
Body ()
Root Schema : Oracle GoldenGate Collection
Type: object
Title: Oracle GoldenGate Collection
Show Source
Nested Schema : items
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
Show Source
Nested Schema : items
Type: object
Additional Properties Allowed: true
Show Source
Nested Schema : status
Item status
Match Any
Show Source
  • Allowed Values: [ "starting", "running", "stopped", "killed", "abended" ]
  • Default Value: stopped
    Allowed Values: [ "running", "stopping", "stopped", "killed", "uninitialized" ]
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "rel":"canonical",
            "href":"https://localhost:9001/services/v2/aiservice/models",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"https://localhost:9001/services/v2/aiservice/models",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"https://localhost:9001/services/v2/metadata-catalog/models",
            "mediaType":"application/schema+json"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:collection",
        "items":[
            {
                "capabilities":[
                    "embed"
                ],
                "loaded":false,
                "providerId":"voyage1",
                "enabled":true,
                "id":"voyage-2",
                "name":"Voyage 2",
                "remoteModelName":"voyage-2",
                "type":"remote",
                "limits":{
                    "maxInputCharacters":20000
                },
                "parameters":{
                },
                "description":"Voyage embedding model for regression"
            }
        ]
    }
}
Back to Top