About Azure Cognitive Search semantic search parameters

T. TABATA 70 Reputation points
2023-10-03T05:33:00+00:00

I have confirmed that the semantic search quickstart has been added.

Is there a detailed description of the input parameters, request body fields?

(Required items and contents)

https://learn.microsoft.com/ja-jp/azure/search/search-get-started-vector#semantic-hybrid-search-with-filter

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
1,353 questions
0 comments No comments
{count} votes

Accepted answer
  1. brtrach-MSFT 17,741 Reputation points Microsoft Employee Moderator
    2023-10-04T01:03:17.8433333+00:00

    @Anonymous I believe the below document should cover what was listed in my answer. Let me know if you have any questions.

    If you found my answers helpful, please accept them as the answer so we know that your question has been answered.

    https://learn.microsoft.com/rest/api/searchservice/search-documents

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. brtrach-MSFT 17,741 Reputation points Microsoft Employee Moderator
    2023-10-03T23:58:50.7533333+00:00

    @Anonymous Here's a brief summary of the required parameters and their contents:

    • search: The search text query.
    • semanticFilters: A list of semantic filters to apply to the search query. Each filter is a JSON object that specifies the name of the filter and its parameters.
    • queryType: Set to "semantic" to enable semantic search.
    • select: A comma-separated list of field names to include in the search results.
    • skip: The number of search results to skip before returning results.
    • top: The maximum number of search results to return.
    • count: Set to "true" to include a count of the number of search results found.
    • highlight: Set to "true" to enable hit highlighting in the search results.
    • highlightPreTag: The string to insert before a highlighted term in the search results.
    • highlightPostTag: The string to insert after a highlighted term in the search results.

    Let me know if you have any further questions.

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.