Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to support the latest GPT version for multilingual content handling and to add a new environment variable for the Azure OpenAI API version. The most important changes are grouped into configuration updates and content handling improvements.
Configuration Updates:
AZURE_OPENAI_API_VERSION
toapp/enrichment/app.py
andfunctions/TextEnrichment/__init__.py
to handle different API versions. [1] [2]Content Handling Improvements:
poll_queue()
inapp/enrichment/app.py
to skip translation fields if using the latest GPT version (2024-10-21 or newer) and use original content instead.main()
infunctions/TextEnrichment/__init__.py
to use original content for entity recognition and key phrase extraction if using the latest GPT version, otherwise use translated content. [1] [2]translate_and_set()
infunctions/TextEnrichment/__init__.py
to skip translation if using the latest GPT version.These changes ensure compatibility with the latest GPT version and improve the handling of multilingual content with less tokens.