Skip to main content
POST
/
catalogues
/
{id}
/
llms
Add an LLM to a catalogue
curl --request POST \
  --url http://localhost:8080/api/v1/catalogues/{id}/llms \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "id": "<string>",
    "type": "<string>"
  }
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Path Parameters

id
integer
required

Catalogue ID

Body

application/json

LLM to add

Catalogue-LLM relationship input model

data
object