Delete Llm Profile
curl --request DELETE \
--url https://api.example.com/api/v1/llm-profiles/{profile_id}import requests
url = "https://api.example.com/api/v1/llm-profiles/{profile_id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.example.com/api/v1/llm-profiles/{profile_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}llm-profiles
Delete Llm Profile
Delete an LLM profile.
DELETE
/
api
/
v1
/
llm-profiles
/
{profile_id}
Delete Llm Profile
curl --request DELETE \
--url https://api.example.com/api/v1/llm-profiles/{profile_id}import requests
url = "https://api.example.com/api/v1/llm-profiles/{profile_id}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.example.com/api/v1/llm-profiles/{profile_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}