Authorization: Bearer ********************
{
"model_name": "gpt-4o-mini",
"query": "你好",
"stream": false,
"history": [
{"role": "user","content": "你好啊"},
{"role": "assistant","content": "你好"}
],
"top_k": 5,
"score_threshold": 1,
"temperature":0.5
}
curl --location --request POST 'https://api.302.ai/302/kb/chat/knowledge_base_chat' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model_name": "gpt-4o-mini",
"query": "你好",
"stream": false,
"history": [
{"role": "user","content": "你好啊"},
{"role": "assistant","content": "你好"}
],
"top_k": 5,
"score_threshold": 1,
"temperature":0.5
}'
{}