记忆功能
字段格式
enable_memory``true
history_data
[{
"is_sent": bool,
"message": string
}]
is_sent``message
is_sent``true
is_sent``false
例子
Who is the President of the United States?
history_data
// REQUEST BODY
{
"enable_memory": true,
"enable_google_results": true,
"input_text": "Who is the President of the United States?",
"history_data": []
}
// RESPONSE BODY
{
"message": "The 46th and current President of the United States is Joseph R. Biden, Jr., who was sworn in on January 20, 2021.",
"image_urls": null
}
When was he born?
history_data
is_sent
设置为用户提示true
is_sent
设置为 ChatSonic 响应false
// REQUEST BODY
{
"enable_memory": true,
"enable_google_results": true,
"input_text": "When was he born?",
"history_data": [
{
"is_sent": true,
"message": "Who is the President of the United States?"
},
{
"is_sent": false,
"message": "The 46th and current President of the United States is Joseph R. Biden, Jr., who was sworn in on January 20, 2021."
}
]
}
// RESPONSE BODY
{
"message": "Joseph Robinette Biden Jr. was born on November 20, 1942, in Scranton, Pennsylvania.",
"image_urls": null
}
What is his favorite sports team?
history_data
is_sent
设置为用户提示true
is_sent
设置为 ChatSonic 响应false
// REQUEST BODY
{
"enable_memory": true,
"enable_google_results": true,
"input_text": "What is his favorite sports team?",
"history_data": [
{
"is_sent": true,
"message": "Who is the President of the United States?"
},
{
"is_sent": false,
"message": "The 46th and current President of the United States is Joseph R. Biden, Jr., who was sworn in on January 20, 2021."
},
{
"is_sent": true,
"message": "When was he born?"
},
{
"is_sent": false,
"message": "Joseph Robinette Biden Jr. was born on November 20, 1942, in Scranton, Pennsylvania."
}
]
}
// RESPONSE BODY
{
"message": "Joe Biden is a Pennsylvania and Delaware native, and he roots for the Philadelphia Eagles. Biden was at Super Bowl LII cheering for his team with his family.",
"image_urls": null
}