Forum Discussion
Search integration with ETL/DW/Synapse(DL)
We'd like for our users to be able to ask natural language questions of the data and get results (and better yet, actual answers to questions)
- aowens-jmtMar 10, 2021Copper ContributorBut if we have data that contains information about people connected to a particular project (via timesheets, CRM data, etc) and we ask it to give me a list of people working on project XXXX would semantic search be a good option for that or LUIS need to be brought in?
- liamca-msftMar 10, 2021
Microsoft
aowens-jmt that is a great example. You could definitely use LUIS to help here because you could break down the intent of this query into a search where project == XXXX. In this particular case, I don't think Semantic Search would help because if you sent a query of "give me a list of people working on project XXXX", the only term in this that would actually help find relevant content in the search index is XXXX. It would not know that the user wants to limit search to the field "project". It is not to say that you need to use LUIS, and you could certainly have you web app intercept this search query and rewrite it as a search query (search=*&$filter=project eq XXXX).