Release Notes
- What's new
- Known issues
- Troubleshooting
- License reference
Get Started
Environments
Large Language Models (LLMs)
Webchats
Tutorials
API's reference
- watsonx Orchestrate Developer Edition APIs
Legal notices
Default Agent Settings
Get Supported Models In Wxo And The Selected Model Config
GET
/
default-agent-settings
/
models
Copy
Ask AI
curl --request GET \
--url http://localhost/api/v1/default-agent-settings/models \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
[
{
"model_name": "<string>",
"display_name": "<string>",
"model_params": {
"max_new_tokens": 123,
"min_new_tokens": 123
},
"default_model_params": {
"max_new_tokens": 123,
"min_new_tokens": 123,
"max_output_tokens": 123
},
"default": true,
"tc_url": "<string>",
"recommended": false
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Successful Response
The response is of type Model · object[]
.
Copy
Ask AI
curl --request GET \
--url http://localhost/api/v1/default-agent-settings/models \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
[
{
"model_name": "<string>",
"display_name": "<string>",
"model_params": {
"max_new_tokens": 123,
"min_new_tokens": 123
},
"default_model_params": {
"max_new_tokens": 123,
"min_new_tokens": 123,
"max_output_tokens": 123
},
"default": true,
"tc_url": "<string>",
"recommended": false
}
]
Assistant
Responses are generated using AI and may contain mistakes.