curl --request POST \
--url https://api.honeyhive.ai/v1/configurations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"provider": "<string>",
"parameters": {
"call_type": "chat",
"model": "<string>",
"hyperparameters": {},
"responseFormat": {
"type": "text"
},
"selectedFunctions": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"parameters": {}
}
],
"functionCallParams": "none",
"forceFunction": {},
"template": [
{
"role": "<string>",
"content": "<string>"
}
]
},
"type": "LLM",
"env": [
"dev"
],
"tags": [
"<string>"
],
"user_properties": {}
}
'