- https://llm-api.treasuredata.comhttps://llm-api.treasuredata.com/api/chat_interfaces
- https://llm-api.eu01.treasuredata.comhttps://llm-api.eu01.treasuredata.com/api/chat_interfaces
- https://llm-api.ap02.treasuredata.comhttps://llm-api.ap02.treasuredata.com/api/chat_interfaces
- https://llm-api.treasuredata.co.jphttps://llm-api.treasuredata.co.jp/api/chat_interfaces
curl -i -X POST \
https://llm-api.treasuredata.com/api/chat_interfaces \
-H 'Authorization: TD1 <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"data": {
"type": "chat_interfaces",
"attributes": {
"projectId": "00000000-0000-0000-0000-000000000001",
"name": "Test Chat Interface",
"textInputEnabled": true,
"textInputAgentId": "00000000-0000-0000-0000-000000000001",
"chatInterfaceButtons": [
{
"agentId": "00000000-0000-0000-0000-000000000001",
"label": "Help",
"prompt": "Please help me with this task"
},
{
"agentId": "00000000-0000-0000-0000-000000000001",
"label": "Info",
"prompt": "Tell me more information"
}
]
}
}
}'Response
{ "data": { "id": "00000000-0000-0000-0000-000000000001", "type": "chatInterfaces", "links": { … }, "attributes": { … } } }