Skip to content

Commit 1593f37

Browse files
committed
misc edits
1 parent 5ad01c3 commit 1593f37

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

articles/search/search-get-started-rag.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -89,40 +89,40 @@ We recommend the hotels-sample-index, which can be created in minutes and runs o
8989

9090
1. Select **Edit JSON**.
9191

92-
1. Search for "semantic" to find the section in the index for a semantic configuration. Replace the "semantic" line with the following semantic configuration. This example specifies a `"defaultConfiguration"`, which is important to the running of this quickstart.
92+
1. Search for "semantic" to find the section in the index for a semantic configuration. Replace the empty `"semantic": {}` line with the following semantic configuration. This example specifies a `"defaultConfiguration"`, which is important to the running of this quickstart.
9393

9494
```json
95-
"semantic": {
96-
"defaultConfiguration": "semantic-config",
97-
"configurations": [
98-
{
99-
"name": "semantic-config",
100-
"prioritizedFields": {
101-
"titleField": {
102-
"fieldName": "HotelName"
103-
},
104-
"prioritizedContentFields": [
105-
{
106-
"fieldName": "Description"
107-
}
108-
],
109-
"prioritizedKeywordsFields": [
110-
{
111-
"fieldName": "Category"
112-
},
113-
{
114-
"fieldName": "Tags"
115-
}
116-
]
117-
}
118-
}
119-
]
95+
"semantic":{
96+
"defaultConfiguration":"semantic-config",
97+
"configurations":[
98+
{
99+
"name":"semantic-config",
100+
"prioritizedFields":{
101+
"titleField":{
102+
"fieldName":"HotelName"
103+
},
104+
"prioritizedContentFields":[
105+
{
106+
"fieldName":"Description"
107+
}
108+
],
109+
"prioritizedKeywordsFields":[
110+
{
111+
"fieldName":"Category"
112+
},
113+
{
114+
"fieldName":"Tags"
115+
}
116+
]
117+
}
118+
}
119+
]
120120
},
121121
```
122122

123123
1. **Save** your changes.
124124

125-
1. Run the following query to test your index: `hotels near the ocean with beach access and good views`.
125+
1. Run the following query in [Search Explorer](search-explorer.md) to test your index: `hotels near the ocean with beach access and good views`.
126126

127127
Output should look similar to the following example. Results that are returned directly from the search engine consist of fields and their verbatim values, along with metadata like a search score and a semantic ranking score and caption if you use semantic ranking.
128128

articles/search/search-what-is-azure-search.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Information retrieval is foundational to any app that surfaces text and vectors.
2020
+ A search engine for [vector search](vector-search-overview.md) and [full text](search-lucene-query-architecture.md) and [hybrid search](hybrid-search-overview.md) over a search index
2121
+ Rich indexing with [integrated data chunking and vectorization](vector-search-integrated-vectorization.md), [lexical analysis](search-analyzers.md) for text, and [optional applied AI](cognitive-search-concept-intro.md) for content extraction and transformation
2222
+ Rich query syntax for [vector queries](vector-search-how-to-query.md), text search, [hybrid queries](hybrid-search-how-to-query.md), fuzzy search, autocomplete, geo-search and others
23+
+ Relevance tuning with [semantic ranking](semantic-search-overview.md), [scoring profiles](index-add-scoring-profiles.md), and parameters for controlling query behaviors at runtime
2324
+ Azure scale, security, and reach
2425
+ Azure integration at the data layer, machine learning layer, Azure AI services and Azure OpenAI
2526

articles/search/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.custom:
2323

2424
| Item                         | Type | Description |
2525
|-----------------------------|------|--------------|
26-
| [**Debug session improvements**](cognitive-search-debug-session.md) | feature | There are two important improvements. First, you can now debug integrated vectorization and data chunking workloads. Second, debug sessions has been modified to use a simpler, horizontal layout for skills processing. You can select an object in the flow, and view its details off to the side. The previous tabbed layout is fully replaced with more context-sensitive information on the page. |
26+
| [**Debug session improvements**](cognitive-search-debug-session.md) | feature | There are two important improvements. First, you can now debug integrated vectorization and data chunking workloads. Second, debug sessions is redesigned for a more streamlined presentation of skills and mappings. You can select an object in the flow, and view or edit its details off to the side. The previous tabbed layout is fully replaced with more context-sensitive information on the page. |
2727
| [**2024-07-01**](/rest/api/searchservice/search-service-api-versions?view=rest-searchservice-2024-07-01&preserve-view=true) | API | Stable release of REST APIs for generally available vector data types, vector compression, and integrated vectorization during indexing and queries. |
2828
| [**Integrated vectorization**](vector-search-integrated-vectorization.md) | Feature | Announcing general availability. Skills-driven data chunking and embedding during indexing. |
2929
| [**Vectorizers**](vector-search-how-to-configure-vectorizer.md) | Feature | Announcing general availability. Text-to-vector conversion during query execution. Both [Azure OpenAI vectorizer](vector-search-vectorizer-azure-open-ai.md) and [custom Web API vectorizer](vector-search-vectorizer-custom-web-api.md) are generally available. |

0 commit comments

Comments
 (0)