curl --location --request POST 'https://api.openai-hub.com/v1beta/models/:generateContent' \
--header 'Authorization: Bearer sk-0ABIEXVjh9****Qckjy' \
--header 'Content-Type: application/json' \
--data-raw '{
"contents": [
{
"role": "user",
"parts": [
{
"text": "你好,请用一句话介绍一下你自己。"
}
]
}
],
"generationConfig": {
"temperature": 0.7,
"maxOutputTokens": 2048,
"topP": 0.95
}
}'{}