Authorization: Bearer ********************
{
"model": "gpt-4o-2024-11-20",
"messages": [
{
"role": "system",
"content": "Extract the event information."
},
{
"role": "user",
"content": "Alice and Bob are going to a science fair on Friday."
}
],
"response_format": {
"type": "json_schema",
"json_schema": {
"name": "CalendarEvent",
"strict": true,
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"date": {
"type": "string"
},
"participants": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"date",
"participants"
],
"additionalProperties": false
}
}
}
}
curl --location --request POST 'https://apihk.unifyllm.top/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-4o-2024-11-20",
"messages": [
{
"role": "system",
"content": "Extract the event information."
},
{
"role": "user",
"content": "Alice and Bob are going to a science fair on Friday."
}
],
"response_format": {
"type": "json_schema",
"json_schema": {
"name": "CalendarEvent",
"strict": true,
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"date": {
"type": "string"
},
"participants": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"name",
"date",
"participants"
],
"additionalProperties": false
}
}
}
}'
{}