session_id)session_id, it is considered a new conversation, and the system will automatically assign session_id and return it in the response header\n\n---\n**[Conversation Result]**\n\n{
"model": "302-sandbox-xxxx",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Hello, world"
}
],
"session_id": "session_1"
}curl --location --request POST 'https://api.302.ai/v1/v1/messages' \
--header 'Authorization: Bearer ' \
--header 'session_id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "302-sandbox-xxxx",
"max_tokens": 1024,
"messages": [
{
"role": "user",
"content": "Hello, world"
}
],
"session_id": "session_1"
}'{}