curl --request POST \
--url https://api.neosantara.xyz/v1/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "nusantara-base",
"messages": [
{
"role": "system",
"content": "<string>",
"name": "<string>",
"tool_call_id": "<string>"
}
],
"reasoning": {
"effort": "low"
},
"temperature": 0.7,
"max_tokens": 1000,
"stream": false,
"n": 1,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"response_format": {
"type": "text",
"schema": {}
},
"functions": [
{
"name": "<string>",
"description": "<string>",
"parameters": {}
}
],
"tools": [
{
"type": "function",
"function": {
"name": "<string>",
"description": "<string>",
"parameters": {}
}
}
],
"tool_choice": "<string>",
"web_search": false
}'