Authorizations
Path Parameters
LLM Settings ID
Body
application/json
Updated LLM settings information
curl --request PATCH \
--url http://localhost:8080/api/v1/llm-settings/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"attributes": {
"max_length": 123,
"max_tokens": 123,
"metadata": {},
"min_length": 123,
"model_name": "<string>",
"repetition_penalty": 123,
"seed": 123,
"stop_words": [
"<string>"
],
"temperature": 123,
"top_k": 123,
"top_p": 123
},
"type": "<string>"
}
}
'{
"attributes": {
"max_length": 123,
"max_tokens": 123,
"metadata": {},
"min_length": 123,
"model_name": "<string>",
"repetition_penalty": 123,
"seed": 123,
"stop_words": [
"<string>"
],
"temperature": 123,
"top_k": 123,
"top_p": 123
},
"id": "<string>",
"type": "<string>"
}Update existing LLM settings information
curl --request PATCH \
--url http://localhost:8080/api/v1/llm-settings/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"attributes": {
"max_length": 123,
"max_tokens": 123,
"metadata": {},
"min_length": 123,
"model_name": "<string>",
"repetition_penalty": 123,
"seed": 123,
"stop_words": [
"<string>"
],
"temperature": 123,
"top_k": 123,
"top_p": 123
},
"type": "<string>"
}
}
'{
"attributes": {
"max_length": 123,
"max_tokens": 123,
"metadata": {},
"min_length": 123,
"model_name": "<string>",
"repetition_penalty": 123,
"seed": 123,
"stop_words": [
"<string>"
],
"temperature": 123,
"top_k": 123,
"top_p": 123
},
"id": "<string>",
"type": "<string>"
}LLM Settings ID
Updated LLM settings information
Show child attributes
Was this page helpful?