Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: Update Azure Cognitive Search Class Change VectorSearchAlgorithmConfi… #2435

Merged
merged 25 commits into from
Aug 21, 2023

Conversation

kinfey
Copy link
Contributor

@kinfey kinfey commented Aug 13, 2023

…guration to HnswVectorSearchAlgorithmConfiguration

Motivation and Context

Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following information:

  1. Why is this change required?

Azure Cognitive Search SDK Change VectorSearchAlgorithmConfiguration to HwsnVectorSearchAlgorithmConfiguration

  1. What problem does it solve?

ImportError: cannot import name 'VectorSearchAlgorithmConfiguration' from 'azure.search.documents.indexes.models'

  1. What scenario does it contribute to?

Python SDK Vector DB Change

  1. If it fixes an open issue, please link to the issue here.

https://github.com/Azure/cognitive-search-vector-pr/blob/main/demo-python/code/azure-search-vector-python-sample.ipynb

Description

Contribution Checklist

…guration to HnswVectorSearchAlgorithmConfiguration
@kinfey kinfey requested a review from a team as a code owner August 13, 2023 10:33
@shawncal shawncal added python Pull requests for the Python Semantic Kernel memory connector labels Aug 13, 2023
@shawncal shawncal changed the title Update Azure Cognitive Search Class Change VectorSearchAlgorithmConfi… Python: Update Azure Cognitive Search Class Change VectorSearchAlgorithmConfi… Aug 13, 2023
@kinfey
Copy link
Contributor Author

kinfey commented Aug 14, 2023

this is fix azure-search-documents 11.4.0 beta 8

@kinfey
Copy link
Contributor Author

kinfey commented Aug 14, 2023

update all

@kinfey kinfey closed this Aug 15, 2023
@kinfey kinfey reopened this Aug 15, 2023
@lemillermicrosoft lemillermicrosoft requested a review from a team August 18, 2023 22:39
@lemillermicrosoft lemillermicrosoft added this pull request to the merge queue Aug 21, 2023
Merged via the queue into microsoft:main with commit 8a7e84c Aug 21, 2023
28 checks passed
awharrison-28 added a commit that referenced this pull request Aug 22, 2023
github-merge-queue bot pushed a commit that referenced this pull request Aug 22, 2023
…ctorSearchAlgorithmConfi…" (#2531)

Reverts #2435

This PR caused a breaking change to the ACS memory store's
get_nearest_matches method
@awharrison-28
Copy link
Contributor

hi @kinfey this ended up being an incomplete solution to the issue. We reverted the PR and are looking into addressing the breaking changes to search() that this introduces.

github-merge-queue bot pushed a commit that referenced this pull request Aug 23, 2023
### Motivation and Context

This PR builds on #2435
- the previous PR updates azure-search to the latest package , where it
is recommended to use HnswVectorSearchAlgorithmConfiguration. The
previous implementation appears to be in a semi-deprecated state.

This new flow is the publicly recommended use for ACS according to
https://github.com/Azure/cognitive-search-vector-pr/tree/main/demo-python/code.

### Description
- update `azure-search-documents` dependency from `11.4.0b6 -> 11.4.0b8`
- index configuration changed from `VectorSearchAlgorithmConfiguration
-> HnswVectorSearchAlgorithmConfiguration`
- update `search_client.search()` call in `get_nearest_matches()` to be
consistent with the new index api

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [ ] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [ ] I didn't break anyone 😄

---------

Co-authored-by: Kinfey <kinfeylo@microsoft.com>
Co-authored-by: Lee Miller <lemiller@microsoft.com>
Co-authored-by: Kinfey <93169410+kinfey@users.noreply.github.com>
SOE-YoungS pushed a commit to SOE-YoungS/semantic-kernel that referenced this pull request Nov 1, 2023
…thmConfi… (microsoft#2435)

…guration to HnswVectorSearchAlgorithmConfiguration

### Motivation and Context

Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following
information:

  1. Why is this change required?
  
Azure Cognitive Search SDK Change VectorSearchAlgorithmConfiguration to
HwsnVectorSearchAlgorithmConfiguration
  
  2. What problem does it solve?
  
ImportError: cannot import name 'VectorSearchAlgorithmConfiguration'
from 'azure.search.documents.indexes.models'
  
  3. What scenario does it contribute to?

Python SDK Vector DB Change

  5. If it fixes an open issue, please link to the issue here.
  

https://github.com/Azure/cognitive-search-vector-pr/blob/main/demo-python/code/azure-search-vector-python-sample.ipynb

### Description

<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [x] The code builds clean without any errors or warnings
- [x] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [x] All unit tests pass, and I have added new tests where possible
- [x] I didn't break anyone 😄

---------

Co-authored-by: Lee Miller <lemiller@microsoft.com>
SOE-YoungS pushed a commit to SOE-YoungS/semantic-kernel that referenced this pull request Nov 1, 2023
…ctorSearchAlgorithmConfi…" (microsoft#2531)

Reverts microsoft#2435

This PR caused a breaking change to the ACS memory store's
get_nearest_matches method
SOE-YoungS pushed a commit to SOE-YoungS/semantic-kernel that referenced this pull request Nov 1, 2023
### Motivation and Context

This PR builds on microsoft#2435
- the previous PR updates azure-search to the latest package , where it
is recommended to use HnswVectorSearchAlgorithmConfiguration. The
previous implementation appears to be in a semi-deprecated state.

This new flow is the publicly recommended use for ACS according to
https://github.com/Azure/cognitive-search-vector-pr/tree/main/demo-python/code.

### Description
- update `azure-search-documents` dependency from `11.4.0b6 -> 11.4.0b8`
- index configuration changed from `VectorSearchAlgorithmConfiguration
-> HnswVectorSearchAlgorithmConfiguration`
- update `search_client.search()` call in `get_nearest_matches()` to be
consistent with the new index api

### Contribution Checklist

<!-- Before submitting this PR, please make sure: -->

- [ ] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [ ] I didn't break anyone 😄

---------

Co-authored-by: Kinfey <kinfeylo@microsoft.com>
Co-authored-by: Lee Miller <lemiller@microsoft.com>
Co-authored-by: Kinfey <93169410+kinfey@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
memory connector python Pull requests for the Python Semantic Kernel
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

None yet

5 participants