@Katriya Bhavik Babubhai It sounds like the default pre-built knowledge base is enabled.
To exclude the pre-built knowledge base, set the "isTest" property to "true" in the request body when you call the question-answering API. This will ensure that the model only uses the data source(s) that you have specified in the configuration.
For example, the request body might look like this:
{
"question": "<span class=" active-doc-0" data-doc-items="0">How long does it take to charge a Surface Pro 4[1](#doc-pos=0)</span>?",
"dataSources": "myDataSource",
"isTest": true
}
In this example, the question-answering model will only use the "myDataSource" data source to retrieve answers and will not use the pre-built knowledge base.
I hope this answers your question. Let me know if you have any further questions.