Skip to content

Releases: Azure-Samples/azure-search-openai-demo

2024-10-17: Built-in vectorizer for all indexes

18 Oct 00:01
31f501a
Compare
Choose a tag to compare

This release includes updates to the code that sets up the search index and optional integrated vectorization feature.
Going forward, all indexes will have an Azure OpenAI vectorizer by default, even if not using integrated vectorization. That makes it easy to issue queries in the Portal or from the SDK without having to compute the embedding yourself. It will also make this index more compatible with the VoiceRAG demo.

For those of you using integrated vectorization, it should be easier to use that feature with the newer embedding models now.

What's Changed

Full Changelog: 2024-10-12...2024-10-17

2024-10-12: Azure OpenAI deployment types

12 Oct 14:42
78583e1
Compare
Choose a tag to compare

This release adds parameters to change the Azure OpenAI deployment type from the current default of "Standard" to one of the other types ("GlobalStandard", a load-balanced deployment, and "Provisioned", a high-capacity pre-reserved higher cost deployment).

Instructions for changing the SKU are here:
https://github.com/Azure-Samples/azure-search-openai-demo/blob/main/docs/deploy_features.md#using-gpt-4

What's Changed

  • Bump i18next from 23.14.0 to 23.15.2 in /app/frontend by @dependabot in #2027
  • Bump react-router-dom from 6.23.1 to 6.26.2 in /app/frontend by @dependabot in #2025
  • Bump @types/react from 18.3.3 to 18.3.11 in /app/frontend by @dependabot in #2024
  • Bump @vitejs/plugin-react from 4.3.1 to 4.3.2 in /app/frontend by @dependabot in #2026
  • Adding support for Azure OpenAI Deployment Types (Global Standard, Standard, Provisioned) by @zedhaque in #2014

Full Changelog: 2024-10-04...2024-10-12

2024-10-04: Browser-stored chat history

04 Oct 16:55
be26d31
Compare
Choose a tag to compare

This release adds a chat history feature that is stored entirely in the browser, using IndexedDB. See guide for enabling it here:
https://github.com/Azure-Samples/azure-search-openai-demo/blob/main/docs/deploy_features.md#enabling-chat-history

In the future, we may add an option to store that chat history in CosmosDB as well. Subscribe to this issue if interested:
#1863

 ## What's Changed

New Contributors

Full Changelog: 2024-10-02...2024-10-04

2024-10-02: Local CSV Parser

02 Oct 20:08
2dd7ba9
Compare
Choose a tag to compare

This release adds a Python-based CSV parser which indexes each row separately.

What's Changed

New Contributors

Full Changelog: 2024-09-26...2024-10-02

2024-09-26: Improvements for local env, Deployment fix

27 Sep 00:08
9722c78
Compare
Choose a tag to compare

This release fixes a recent regression in "azd up" for App Service. Please pull the azure.yaml from this release if you recently pulled down this repo and are having issues with deployment.

This release also introduces a large change to how the local scripts and server bring in configuration values from the azd deployment. Previously, the scripts would actually set the current azd environment variables in the shell environment, but that occasionally led to problems when trying to switch between azd environments. Now, all code uses the python-dotenv package to dynamically load in the current azd's environment variables, so you should be able to cleanly switch between azd environments as needed.

What's Changed

  • azure.yaml improvements: remoteBuild option, prepackage for App Service by @pamelafox in #1993
  • Bump rollup from 3.29.4 to 3.29.5 in /app/frontend by @dependabot in #1994
  • Refactor scripts to avoid anti-patterns, redundancy by @pamelafox in #1986
  • Bump dompurify and @types/dompurify in /app/frontend by @dependabot in #1983
  • Bump cryptography from 43.0.0 to 43.0.1 in /app/backend by @dependabot in #1967
  • Changes for easier working with local models by @pamelafox in #1992

Full Changelog: 2024-09-19...2024-09-26

2024-09-19: Optional deployment to Azure Container Apps

20 Sep 01:54
0225f75
Compare
Choose a tag to compare

This release includes an option to deploy to a single container on Azure Container Apps with a Dockerfile.
If you're interested in that, please follow the guide on:
https://github.com/Azure-Samples/azure-search-openai-demo/blob/main/docs/azure_container_apps.md
Let us know if you have any issues or feedback on the option.

 ## What's Changed

New Contributors

Full Changelog: 2024-08-30...2024-09-19

2024-08-30: Internationalization support for the UI

30 Aug 21:10
9073b65
Compare
Choose a tag to compare

There is now an optional feature to enable a language picker in the UI:
https://github.com/Azure-Samples/azure-search-openai-demo/blob/main/docs/deploy_features.md#enabling-language-picker
This will change the language of UI messages, but not affect anything about the LLM system prompt.

Screenshot: 
Screenshot 2024-08-30 at 2 05 54 PM

As a result of this PR, all text messages for the UI are now in single files, per language, and all messages can be edited in one place. See guide here: https://github.com/Azure-Samples/azure-search-openai-demo/blob/main/docs/customization.md#customizing-the-ui

What's Changed

  • Reduce JS size by using more specific import for react-syntax-highlighter by @pamelafox in #1947
  • Send down LLM messages as dictionaries in thought process by @pamelafox in #1948
  • Frontend multi-language support #1690 by @bnodir in #1790

New Contributors

Full Changelog: 2024-08-23...2024-08-30

2024-08-23: Optional speech output is now on-demand

23 Aug 22:18
7b55ad2
Compare
Choose a tag to compare

We previously would proactively load the speech output URLs when that feature was enabled. However, we received feedback that the proactive loading was wasteful. We now load only when the user clicks the speech icon, so the user will see a brief loading icon and then hear the speech play.

What's Changed

Full Changelog: 2024-08-21...2024-08-23

2024-08-21: Markdown rendering for responses

21 Aug 23:47
781bf21
Compare
Choose a tag to compare

The UI now supports rendering markdown syntax (including tables). Given that, we've removed the line from the default system prompt that said "Do not return markdown". If you want even more Markdown in responses, you may want to experiment with adding a line like "Please use Markdown to format lists, tables, headings, and emphasis."
Let us know if you have any issues with the rendering in the issue tracker.

What's Changed

New Contributors

Full Changelog: 2024-08-20...2024-08-21

2024-08-20: Default search service SKU to basic

20 Aug 19:45
d313c6a
Compare
Choose a tag to compare

The significant change in this release is that the infrastructure now defaults to the basic tier. This reduces the costs for new developers experimenting with this repo. However, if you pull the changes into an existing deployment with the standard tier, you'll get an error when it tries to provision the search service. You should explicitly set the search service SKU with this command first:

azd env set AZURE_SEARCH_SERVICE_SKU standard

This release also includes a few bug fixes.

What's Changed

New Contributors

Full Changelog: 2024-08-08...2024-08-20