New API to allow uploaded files to pass through backend service #839
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 the
app/backend/app.py
file and minor changes toNOTICE.md
andapp/backend/testsuite.py
. The changes mainly focus on code refactoring, improving readability, and adding new functionality for file uploads.Code Refactoring and Readability Improvements:
DF_FINAL
instead ofdffinal
, andMODEL_NAME
instead ofmodel_name
. ([[1]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L117-R118)
,[[2]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6R163-R167)
,[[3]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L176-R194)
,[[4]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L702-R695)
)[[1]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6R6-R15)
,[[2]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-d78e1bb3c937516751e3aa92744f9ecc8a4a8ce24c2e5954069fbe1351eda017R9)
)[[1]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L135-R140)
,[[2]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L319-L354)
,[[3]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L381-R370)
)New Functionality:
[app/backend/app.pyR848-R878](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6R848-R878)
)Minor Changes:
[app/backend/app.pyR109](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6R109)
)[[1]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L258-R264)
,[[2]](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-5f1d71f916fd982ef5a7ab0b78e419d64d02a77c7422911db11911a74f3a8ee6L742-R737)
)@azure/storage-blob
. ([NOTICE.mdL116-L119](https://github.com/microsoft/PubSec-Info-Assistant/pull/839/files#diff-53337bf7ea91d782c573ac8653c18f95b7b23c38da9de08288639bcec9993406L116-L119)
)These changes collectively aim to enhance the maintainability, readability, and functionality of the codebase.