Skip to content

Commit 0a5d992

Browse files
committed
update
1 parent 926acf8 commit 0a5d992

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

app/backend/requirements.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tenacity
77
azure-ai-documentintelligence==1.0.0b4
88
azure-cognitiveservices-speech
99
azure-cosmos
10+
azure-search-documents==11.6.0b12
1011
azure-storage-blob
1112
azure-storage-file-datalake
1213
uvicorn
@@ -29,4 +30,4 @@ msgraph-sdk
2930
python-dotenv
3031
prompty
3132
rich
32-
typing-extensions
33+
typing-extensions

app/backend/requirements.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# This file was autogenerated by uv via the following command:
22
# uv pip compile requirements.in -o requirements.txt
3-
--index-url https://pypi.org/simple
4-
--extra-index-url https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-python/pypi/simple/
53
aiofiles==24.1.0
64
# via
75
# prompty
@@ -55,7 +53,8 @@ azure-monitor-opentelemetry==1.6.1
5553
# via -r requirements.in
5654
azure-monitor-opentelemetry-exporter==1.0.0b32
5755
# via azure-monitor-opentelemetry
58-
azure-search-documents==11.6.0a20250505003
56+
azure-search-documents==11.6.0b12
57+
# via -r requirements.in
5958
azure-storage-blob==12.22.0
6059
# via
6160
# -r requirements.in

app/frontend/src/components/AnalysisPanel/AnalysisPanel.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@
147147
.subqueriesTable td,
148148
.subqueriesTable tr {
149149
background: #fff;
150-
}
150+
}

docs/agentic_retrieval.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This repository includes an optional feature that uses agentic retrieval to find
66

77
### Supported Models
88

9-
See the [agentic retrieval documentation](https://learn.microsoft.com/en-us/azure/search/search-agentic-retrieval-how-to-create).
9+
See the agentic retrieval documentation.
1010

1111
### Prerequisites
1212

tests/snapshots/test_app/test_ask_rtr_text_agent/agent_client0/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"props": {
1919
"filter": null,
20-
"max_docs_for_reranker": 150,
20+
"max_docs_for_reranker": 500,
2121
"reranker_threshold": 0
2222
},
2323
"title": "Use agentic retrieval"

tests/snapshots/test_app/test_ask_rtr_text_agent_filter/agent_auth_client0/result.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"props": {
1919
"filter": "category ne 'excluded' and (oids/any(g:search.in(g, 'OID_X')) or groups/any(g:search.in(g, 'GROUP_Y, GROUP_Z')))",
20-
"max_docs_for_reranker": 150,
20+
"max_docs_for_reranker": 500,
2121
"reranker_threshold": 0
2222
},
2323
"title": "Use agentic retrieval"

tests/test_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ async def test_chat_text_agent(agent_client, snapshot):
520520
)
521521
assert response.status_code == 200
522522
result = await response.get_json()
523-
assert result["context"]["thoughts"][0]["props"]["max_docs_for_reranker"] == 150
523+
assert result["context"]["thoughts"][0]["props"]["max_docs_for_reranker"] == 500
524524
assert result["context"]["thoughts"][0]["props"]["reranker_threshold"] == 0
525525
snapshot.assert_match(json.dumps(result, indent=4), "result.json")
526526

0 commit comments

Comments
 (0)