Feature #3330
Feature #3246: Support for Search Stats page
Send 'search data' to the log extension API
100%
Description
Current and desired behaviour mentioned below.
Current behaviour (according to ticket 3298)
when the user clicks the 'Yes' button within the ChatGPT block, send this information
{
"videoIdData": {
"https://www.studytonight.com/operating-system/classical-synchronization-problems": {
"phraseAskedInChatGPT" : "linked list"
}
}
}
Desired behaviour
when the user clicks the 'Yes' button within the ChatGPT block, do not send this information from the copilot
{
"videoIdData": {
"https://www.studytonight.com/operating-system/classical-synchronization-problems": {
"phraseAskedInChatGPT" : "linked list"
}
}
}
So, remove this call from the copilot. Instead, make the same call from the /chatgptplus page. However, although the user had typed "linked list" in the copilot, she may change it to "what is linked list in Rust". So, the message to be sent is:
{
"videoIdData": {
"https://www.studytonight.com/operating-system/classical-synchronization-problems": {
"phraseAskedInChatGPT" : "what is linked list in Rust"
}
}
}