Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
4b839fe
Migrate from azs repo
admayber Jul 8, 2025
6827f18
Fix wrong api version property
admayber Jul 8, 2025
94f4ed7
Add file knowledge source
admayber Jul 9, 2025
df213eb
Updates from merged swagger PRs
admayber Jul 10, 2025
ddafb4e
Add remainingSeconds back into example
admayber Jul 11, 2025
d4966cc
Fix knowledge agent output configuration
admayber Jul 14, 2025
892674e
Update knowledge sources
admayber Jul 16, 2025
4a46742
Fix prettier issues
admayber Jul 16, 2025
d1332fc
Prettier on examples
admayber Jul 17, 2025
184067b
Update readme
admayber Jul 17, 2025
c78968e
Use prettier rules from spec repo
admayber Jul 17, 2025
2d67752
Prettier on swagger
admayber Jul 17, 2025
cd4dc27
Late-breaking changes
admayber Jul 22, 2025
8726d96
Add missing object type
admayber Jul 23, 2025
46c3367
Merge branch 'main' into admayber/azure-search-08-01-preview
efrainretana Jul 24, 2025
676e29e
Back out Indexer Runtime feature
efrainretana Jul 24, 2025
ced36d2
Merge branch 'admayber/azure-search-08-01-preview' of https://github.…
efrainretana Jul 24, 2025
9c93ed0
Remove missing Index Runtime example property
efrainretana Jul 24, 2025
2192a59
Knowledge Agent Changes + Indexer Runtime
efrainretana Jul 25, 2025
3ba3716
Address Knowledge Agent comments
efrainretana Jul 25, 2025
8e80e75
Fix semantic validation
efrainretana Jul 25, 2025
43119c1
Add missing examples
efrainretana Jul 25, 2025
b82ff73
Use common identity for KS
efrainretana Jul 28, 2025
1c16d10
Fix uri format
admayber Jul 29, 2025
7f1a7f5
uri -> url
admayber Jul 29, 2025
1e93a02
Prettier fix
admayber Jul 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
{

Check failure on line 1 in specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/KnowledgeAgentRetrieve.json

View check run for this annotation

Azure Pipelines / Swagger PrettierCheck

specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/KnowledgeAgentRetrieve.json#L1

specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/KnowledgeAgentRetrieve.json(1,1): error : Code style issues found, please run prettier. > npm install > npx prettier --write specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/KnowledgeAgentRetrieve.json
"operationId": "KnowledgeRetrieval_Retrieve",
"title": "KnowledgeAgentRetrieve",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"agentName": "agent-preview-test",
"api-version": "2025-08-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000",
"x-ms-query-source-authorization": null,
"retrievalRequest": {
"messages": [
{
"role": "user",
"content": [
{
"text": "hello world",
"type": "text"
}
]
}
],
"knowledgeSourceParams": [
{
"knowledgeSourceName": "ks-preview-test",
"filterAddOn": "foo eq bar",
"maxDocsForReranker": 100,
"rerankerThreshold": 2.5,
"includeReferenceSourceData": true,
"kind": "searchIndex"
}
]
}
},
"responses": {
"200": {
"body": {
"response": [
{
"role": "assistant",
"content": [
{
"type": "text",
"text": "[{...}]"
}
]
}
],
"activity": [
{
"type": "modelQueryPlanning",
"id": 0,
"inputTokens": 11,
"outputTokens": 22
},
{
"type": "searchQuery",
"id": 1,
"targetIndex": "preview-test",
"query": {
"search": "hello world"
},
"queryTime": "2025-01-01T00:08:45.045Z",
"count": 2,
"elapsedMs": 1234
},
{
"type": "searchQuery",
"id": 2,
"targetIndex": "preview-test",
"query": {
"search": "hello world two"
},
"queryTime": "2025-01-01T00:08:45.045Z",
"count": 2,
"elapsedMs": 1234
},
{
"type": "searchSemanticReranker",
"id": 3,
"inputTokens": 74
}
],
"references": [
{
"type": "searchDoc",
"id": "83dd7d40",
"activitySource": 1,
"docKey": "myDocKey1",
"sourceData": {
"id": "myDocKey1",
"title": "high_doc",
"content": "hello world"
},
"rerankerScore": 3.5
},
{
"type": "searchDoc",
"id": "83dd7d41",
"activitySource": 1,
"docKey": "myDocKey2",
"sourceData": {
"id": "myDocKey2",
"title": "low_doc",
"content": "goodbye world"
},
"rerankerScore": 2.7
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"parameters": {
"endpoint": "https://myservice.search.windows.net",
"indexName": "myindex",
"api-version": "2025-08-01-preview",
"autocompleteMode": "oneTerm",
"search": "washington medic",
"suggesterName": "sg",
"filter": "search.in(docId,'101,102,105')",
"fuzzy": false,
"highlightPostTag": "</em>",
"highlightPreTag": "<em>",
"minimumCoverage": 80,
"searchFields": [
"title",
"description"
],
"top": 10
},
"responses": {
"200": {
"body": [
{
"text": "medicaid",
"queryPlusText": "washington medicaid"
},
{
"text": "medicare",
"queryPlusText": "washington medicare"
},
{
"text": "medicine",
"queryPlusText": "washington medicine"
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{

Check failure on line 1 in specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json

View check run for this annotation

Azure Pipelines / Swagger PrettierCheck

specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json#L1

specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json(1,1): error : Code style issues found, please run prettier. > npm install > npx prettier --write specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexAutocompleteDocumentsPost.json
"operationId": "Documents_AutocompletePost",
"title": "SearchIndexAutocompleteDocumentsPost",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"indexName": "preview-test",
"api-version": "2025-08-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000",
"autocompleteRequest": {
"search": "p",
"autocompleteMode": "oneTerm",
"filter": "ownerId ne '1'",
"fuzzy": true,
"highlightPostTag": "</em>",
"highlightPreTag": "<em>",
"minimumCoverage": 80,
"searchFields": "category, ownerId",
"suggesterName": "sg",
"top": 10
}
},
"responses": {
"200": {
"body": {
"@search.coverage": 100.0,
"value": [
{
"text": "purple",
"queryPlusText": "<em>purple</em>"
},
{
"text": "pink",
"queryPlusText": "<em>pink</em>"
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{

Check failure on line 1 in specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexCountDocuments.json

View check run for this annotation

Azure Pipelines / Swagger PrettierCheck

specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexCountDocuments.json#L1

specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexCountDocuments.json(1,1): error : Code style issues found, please run prettier. > npm install > npx prettier --write specification/search/data-plane/Azure.Search/preview/2025-08-01-preview/examples/SearchIndexCountDocuments.json
"operationId": "Documents_Count",
"title": "SearchIndexCountDocuments",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"indexName": "preview-test",
"api-version": "2025-08-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": 50
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"operationId": "Documents_Get",
"title": "SearchIndexGetDocument",
"parameters": {
"endpoint": "https://previewexampleservice.search.windows.net",
"indexName": "preview-test",
"key": "1",
"$select": [
"id",
"description",
"name",
"category",
"ownerId"
],
"api-version": "2025-08-01-preview",
"x-ms-client-request-id": "00000000-0000-0000-0000-000000000000",
"x-ms-query-source-authorization": "00000000-0000-0000-0000-000000000000"
},
"responses": {
"200": {
"body": {
"id": "1",
"name": "test",
"description": "test1 hello",
"category": "purple",
"ownerId": "sam"
}
}
}
}
Loading
Loading