-
Notifications
You must be signed in to change notification settings - Fork 864
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
Merge latest main hot-fixes to vNext-Dev #815
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [langchain-community](https://github.com/langchain-ai/langchain) from 0.2.5 to 0.2.9. - [Release notes](https://github.com/langchain-ai/langchain/releases) - [Commits](langchain-ai/langchain@langchain-community==0.2.5...langchain-community==0.2.9) --- updated-dependencies: - dependency-name: langchain-community dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
…nto dependabot-wotey
update langchain to required versions
…gchain-community-0.2.9 Bump langchain-community from 0.2.5 to 0.2.9 in /app/backend
…-to-REST-APIs Remove vision SDK for REST APIs
Update Language Detection and Translation to use Azure Cognitive Multi Service API
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 focuses on removing the
AZURE_AI_TRANSLATION_DOMAIN
configuration and updating the code to use the newENRICHMENT_ENDPOINT
for language detection and translation. Additionally, it includes updates to dependencies and code ownership.Configuration and Endpoint Updates:
AZURE_AI_TRANSLATION_DOMAIN
fromapp/backend/app.py
and updated code to useENRICHMENT_ENDPOINT
for language detection and translation. (app/backend/app.py
) [1] [2] [3]detect_language
andtranslate_response
methods inchatreadretrieveread.py
to useENRICHMENT_ENDPOINT
. (app/backend/approaches/chatreadretrieveread.py
) [1] [2] [3] [4]comparewebwithwork.py
to removeAZURE_AI_TRANSLATION_DOMAIN
and useENRICHMENT_ENDPOINT
. (app/backend/approaches/comparewebwithwork.py
) [1] [2] [3]Dependency Updates:
langchain
andlangchain-community
dependencies inrequirements.txt
. (app/backend/requirements.txt
) [1] [2]Code Ownership:
CODEOWNERS
file to reflect new code ownership assignments. (docs/CODEOWNERS
)Documentation and Miscellaneous:
TARGET_TRANSLATION_LANGUAGE
entry indocument_pre_processing.md
. (docs/features/document_pre_processing.md
)azure.ai.vision
import and updated language detection and translation endpoints inImageEnrichment/__init__.py
. (functions/ImageEnrichment/__init__.py
) [1] [2] [3] [4] [5] [6]AZURE_AI_TRANSLATION_DOMAIN
andAZURE_AI_TEXT_ANALYTICS_DOMAIN
fromTextEnrichment/__init__.py
and updated endpoints. (functions/TextEnrichment/__init__.py
) [1] [2]