curl --request PUT \
--url http://localhost:3001/api/v1/chats/{id} \
--header 'Content-Type: application/json' \
--cookie nut-session= \
--data '
{
"title": "<string>",
"messages": [
{
"role": "user",
"content": "<string>",
"name": "<string>",
"toolCalls": [
{}
],
"toolCallId": "<string>"
}
],
"model": "<string>",
"context": {
"type": "<string>",
"content": "<string>",
"displayId": "<string>",
"contextFiles": "<string>"
}
}
'