├── .coverage ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── setupEnv.sh ├── .flake8 ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── subtask.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── azure-dev.yaml │ ├── broken-links-checker.yml │ ├── build-docker-image.yml │ ├── create-release.yml │ ├── deploy-linux.yml │ ├── deploy-orchestrator.yml │ ├── deploy-windows.yml │ ├── deploy.yml │ ├── job-cleanup-deployment.yml │ ├── job-deploy-linux.yml │ ├── job-deploy-windows.yml │ ├── job-deploy.yml │ ├── job-docker-build.yml │ ├── job-send-notification.yml │ ├── pr-title-checker.yml │ ├── pylint.yml │ ├── scheduled-Dependabot-PRs-Auto-Merge.yml │ ├── stale-bot.yml │ ├── telemetry-template-check.yml │ ├── test-automation-v2.yml │ ├── test-automation.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── TRANSPARENCY_FAQ.md ├── azure.yaml ├── coverage.xml ├── docs ├── ACRBuildAndPushGuide.md ├── API.md ├── AVMPostDeploymentGuide.md ├── AzureAccountSetup.md ├── AzureGPTQuotaSettings.md ├── ConfigureAppAuthentication.md ├── CustomizeSchemaData.md ├── CustomizeSystemPrompts.md ├── CustomizingAzdParameters.md ├── DeleteResourceGroup.md ├── DeploymentGuide.md ├── GoldenPathWorkflows.md ├── LogAnalyticsReplicationDisable.md ├── ManualAppRegistrationConfiguration.md ├── ProcessingPipelineApproach.md ├── SampleWorkflow.md ├── TechnicalArchitecture.md ├── TroubleShootingSteps.md ├── images │ ├── AddDetails.png │ ├── AddPlatform.png │ ├── AddRedirectURL.png │ ├── AppAuthIdentityProvider.png │ ├── AppAuthIdentityProviderAdd.png │ ├── AppAuthIdentityProviderAdded.png │ ├── AppAuthentication.png │ ├── AppAuthenticationIdentity.png │ ├── AppServiceContainer.png │ ├── Appregistrations.png │ ├── AzureHomePage.png │ ├── CheckAPIService.png │ ├── ContainerApp.png │ ├── DeleteRG.png │ ├── MicrosoftEntraID.png │ ├── NewRegistration.png │ ├── SchemaFileRegistration.png │ ├── Web.png │ ├── WebAppURL.png │ ├── add_auth_provider_api_1.png │ ├── add_auth_provider_api_2.png │ ├── add_auth_provider_api_3.png │ ├── add_auth_provider_web_1.png │ ├── add_auth_provider_web_2.png │ ├── add_auth_provider_web_3.png │ ├── add_auth_provider_web_4.png │ ├── add_client_id_to_api_1.png │ ├── add_client_id_to_api_2.png │ ├── add_client_id_to_web_1.png │ ├── add_client_id_to_web_2.png │ ├── add_client_id_to_web_3.png │ ├── configure_app_registration_api_1.png │ ├── configure_app_registration_api_2.png │ ├── configure_app_registration_api_3.png │ ├── configure_app_registration_web_1.png │ ├── configure_app_registration_web_10.png │ ├── configure_app_registration_web_2.png │ ├── configure_app_registration_web_2_without_preview.png │ ├── configure_app_registration_web_3.png │ ├── configure_app_registration_web_3_without_preview.png │ ├── configure_app_registration_web_4.png │ ├── configure_app_registration_web_4_without_preview.png │ ├── configure_app_registration_web_5.png │ ├── configure_app_registration_web_6.png │ ├── configure_app_registration_web_7.png │ ├── configure_app_registration_web_8.png │ ├── configure_app_registration_web_9.png │ ├── cp-post-deployment.png │ ├── deleteservices.png │ ├── git_bash.png │ ├── manual_register_app_api_1.png │ ├── manual_register_app_api_2.png │ ├── manual_register_app_api_3.png │ ├── manual_register_app_api_5.png │ ├── manual_register_app_web_1.png │ ├── manual_register_app_web_2.png │ ├── manual_register_app_web_3.png │ ├── manual_register_app_web_4.png │ ├── manual_register_app_web_5.png │ ├── manual_register_app_web_6.png │ ├── manual_register_app_web_7.png │ ├── quota-check-output.png │ ├── re_use_foundry_project │ │ ├── azure_ai_foundry_list.png │ │ ├── navigate_to_projects.png │ │ └── project_resource_id.png │ ├── re_use_log │ │ ├── logAnalytics.png │ │ ├── logAnalyticsJson.png │ │ └── logAnalyticsList.png │ ├── readme │ │ ├── approach.png │ │ ├── business-scenario.png │ │ ├── processing-pipeline.png │ │ ├── quick-deploy.png │ │ ├── solution-architecture.png │ │ ├── solution-overview.png │ │ ├── supporting-documentation.png │ │ └── ui.png │ ├── resource-groups.png │ ├── resourcegroup.png │ ├── resourcegroup1.png │ ├── sampleworkflow1.png │ ├── schema-register-api.png │ ├── update_env_app_1.png │ ├── update_env_app_1_1.png │ └── update_env_app_2.png ├── quota_check.md ├── re-use-foundry-project.md └── re-use-log-analytics.md ├── infra ├── main.bicep ├── main.json ├── main.parameters.json ├── main.waf.parameters.json ├── modules │ ├── account │ │ ├── aifoundry.bicep │ │ └── modules │ │ │ ├── dependencies.bicep │ │ │ ├── keyVaultExport.bicep │ │ │ └── project.bicep │ ├── container-registry.bicep │ ├── key-vault.bicep │ ├── log-analytics-workspace.bicep │ ├── managed-identity.bicep │ └── virtualNetwork.bicep ├── scripts │ ├── checkquota.sh │ ├── docker-build.ps1 │ ├── docker-build.sh │ ├── post_deployment.ps1 │ ├── post_deployment.sh │ └── quota_check_params.sh └── vscode_web │ ├── .env │ ├── .gitignore │ ├── LICENSE │ ├── README-noazd.md │ ├── README.md │ ├── codeSample.py │ ├── endpoint-requirements.txt │ ├── endpointCodeSample.py │ ├── index.json │ ├── install.sh │ └── requirements.txt ├── src ├── ContentProcessor │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .dockerignore │ ├── .gitignore │ ├── .python-version │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── ContentProcessor.code-workspace │ ├── Dockerfile │ ├── README.md │ ├── conftest.py │ ├── pyproject.toml │ ├── pytest.ini │ ├── requirements.txt │ ├── src │ │ ├── helpers │ │ │ └── azure_credential_utils.py │ │ ├── libs │ │ │ ├── application │ │ │ │ ├── __init__.py │ │ │ │ ├── application_configuration.py │ │ │ │ ├── application_context.py │ │ │ │ └── env_config.py │ │ │ ├── azure_helper │ │ │ │ ├── __init__.py │ │ │ │ ├── app_configuration.py │ │ │ │ ├── azure_openai.py │ │ │ │ ├── comsos_mongo.py │ │ │ │ ├── content_understanding.py │ │ │ │ ├── model │ │ │ │ │ └── content_understanding.py │ │ │ │ └── storage_blob.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── application_main.py │ │ │ │ └── application_models.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── content_process.py │ │ │ ├── pipeline │ │ │ │ ├── __init__.py │ │ │ │ ├── entities │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── mime_types.py │ │ │ │ │ ├── pipeline_data.py │ │ │ │ │ ├── pipeline_file.py │ │ │ │ │ ├── pipeline_message_base.py │ │ │ │ │ ├── pipeline_message_context.py │ │ │ │ │ ├── pipeline_status.py │ │ │ │ │ ├── pipeline_step_result.py │ │ │ │ │ └── schema.py │ │ │ │ ├── handlers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── evaluate_handler.py │ │ │ │ │ ├── extract_handler.py │ │ │ │ │ ├── logics │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── evaluate_handler │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── comparison.py │ │ │ │ │ │ │ ├── confidence.py │ │ │ │ │ │ │ ├── content_understanding_confidence_evaluator.py │ │ │ │ │ │ │ ├── model.py │ │ │ │ │ │ │ └── openai_confidence_evaluator.py │ │ │ │ │ ├── map_handler.py │ │ │ │ │ ├── save_handler.py │ │ │ │ │ └── transform_handler.py │ │ │ │ ├── pipeline_queue_helper.py │ │ │ │ ├── pipeline_step_helper.py │ │ │ │ └── queue_handler_base.py │ │ │ ├── process_host │ │ │ │ ├── __init__.py │ │ │ │ ├── handler_process_host.py │ │ │ │ └── handler_type_loader.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── base64_util.py │ │ │ │ ├── remote_module_loader.py │ │ │ │ ├── stopwatch.py │ │ │ │ └── utils.py │ │ ├── main.py │ │ └── tests │ │ │ ├── azure_helper │ │ │ ├── test_cosmos_mongo.py │ │ │ └── test_storage_blob.py │ │ │ ├── conftest.py │ │ │ ├── helpers │ │ │ └── test_azure_credential_utils.py │ │ │ ├── pipeline │ │ │ ├── entities │ │ │ │ └── test_pipeline_data.py │ │ │ ├── test_pipeline_queue_helper.py │ │ │ └── test_queue_handler_base.py │ │ │ ├── process_host │ │ │ └── test_handler_type_loader.py │ │ │ ├── test_main.py │ │ │ └── utils │ │ │ ├── test_base64_util.py │ │ │ ├── test_stopwatch.py │ │ │ └── test_utils.py │ └── uv.lock ├── ContentProcessorAPI │ ├── .devcontainer │ │ ├── Dockerfile │ │ └── devcontainer.json │ ├── .dockerignore │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .python-version │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── Dockerfile │ ├── README.md │ ├── app │ │ ├── .env.dev │ │ ├── __init__.py │ │ ├── appsettings.py │ │ ├── dependencies.py │ │ ├── libs │ │ │ ├── app_configuration │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ ├── cosmos_db │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ ├── storage_blob │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ │ └── storage_queue │ │ │ │ ├── __init__.py │ │ │ │ └── helper.py │ │ ├── main.py │ │ ├── routers │ │ │ ├── contentprocessor.py │ │ │ ├── logics │ │ │ │ ├── __init__.py │ │ │ │ ├── contentprocessor.py │ │ │ │ └── schemavault.py │ │ │ ├── models │ │ │ │ ├── contentprocessor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── content_process.py │ │ │ │ │ ├── mime_types.py │ │ │ │ │ └── model.py │ │ │ │ └── schmavault │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── model.py │ │ │ └── schemavault.py │ │ └── tests │ │ │ ├── libs │ │ │ ├── test_app_configuration_helper.py │ │ │ ├── test_cosmos_db.py │ │ │ └── test_storage_blob.py │ │ │ ├── routers │ │ │ ├── test_contentprocessor.py │ │ │ └── test_schemavault.py │ │ │ └── test_main.py │ ├── conftest.py │ ├── helpers │ │ └── azure_credential_utils.py │ ├── pyproject.toml │ ├── pytest.ini │ ├── register_schema.sh │ ├── requirements.txt │ ├── samples │ │ ├── invoices │ │ │ ├── FabrikamInvoice_1.pdf │ │ │ ├── FabrikamInvoice_2.pdf │ │ │ ├── FabrikamInvoice_3.pdf │ │ │ ├── FabrikamInvoice_4.pdf │ │ │ └── FabrikamInvoice_5.pdf │ │ ├── propertyclaims │ │ │ ├── ClaimForm_1.pdf │ │ │ ├── ClaimForm_2.pdf │ │ │ ├── ClaimForm_3.pdf │ │ │ ├── ClaimForm_4.pdf │ │ │ ├── ClaimForm_5.pdf │ │ │ ├── ClaimForm_6.pdf │ │ │ ├── ClaimForm_7.pdf │ │ │ └── claimform_handwritten_1.pdf │ │ ├── schemas │ │ │ ├── invoice.py │ │ │ ├── propertyclaim.py │ │ │ ├── register_schema.ps1 │ │ │ ├── register_schema.sh │ │ │ ├── schema_info_ps1.json │ │ │ └── schema_info_sh.json │ │ ├── upload_files.ps1 │ │ └── upload_files.sh │ ├── test_http │ │ └── invoke_APIs.http │ ├── tests │ │ ├── conftest.py │ │ └── helpers │ │ │ └── test_azure_credential_utils.py │ └── uv.lock └── ContentProcessorWeb │ ├── .devcontainer │ ├── Dockerfile │ ├── base.Dockerfile │ └── devcontainer.json │ ├── .dockerignore │ ├── .env │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .prettierrc │ ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── Dockerfile │ ├── README.md │ ├── config-overrides.js │ ├── env.sh │ ├── eslint.config.mjs │ ├── nginx-custom.conf │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.tsx │ ├── Components │ │ ├── DialogComponent │ │ │ ├── DialogComponent.tsx │ │ │ └── DialogComponentTypes.ts │ │ ├── DocumentViewer │ │ │ ├── DocumentViewer.styles.scss │ │ │ └── DocumentViewer.tsx │ │ ├── Header │ │ │ ├── Header.css │ │ │ └── Header.tsx │ │ ├── JSONEditor │ │ │ ├── JSONEditor.styles.scss │ │ │ └── JSONEditor.tsx │ │ ├── Spinner │ │ │ ├── Spinner.styles.scss │ │ │ └── Spinner.tsx │ │ └── UploadContent │ │ │ ├── UploadFilesModal.styles.scss │ │ │ └── UploadFilesModal.tsx │ ├── Hooks │ │ ├── README.txt │ │ ├── useConsoleSuppression.ts │ │ ├── useFileType.ts │ │ ├── useHeaderHooks.tsx │ │ ├── usePanelHooks.tsx │ │ └── useSwaggerPreview.ts │ ├── Imports │ │ ├── MainLogo.svg │ │ ├── MsftColor.svg │ │ └── bundleIcons.tsx │ ├── Pages │ │ ├── DefaultPage │ │ │ ├── Components │ │ │ │ ├── ProcessQueueGrid │ │ │ │ │ ├── CustomCellRender.tsx │ │ │ │ │ ├── ProcessQueueGrid.styles.scss │ │ │ │ │ ├── ProcessQueueGrid.tsx │ │ │ │ │ └── ProcessQueueGridTypes.ts │ │ │ │ ├── ProcessSteps │ │ │ │ │ └── ProcessSteps.tsx │ │ │ │ └── SchemaDropdown │ │ │ │ │ ├── SchemaDropdown.styles.scss │ │ │ │ │ ├── SchemaDropdown.tsx │ │ │ │ │ └── SchemaDropdownTypes.ts │ │ │ ├── PanelCenter.tsx │ │ │ ├── PanelLeft.tsx │ │ │ ├── PanelRight.tsx │ │ │ ├── Panels.styles.scss │ │ │ └── index.tsx │ │ ├── HomePage.tsx │ │ └── NotFound.tsx │ ├── Services │ │ └── httpUtility.ts │ ├── Styles │ │ ├── App.css │ │ └── index.css │ ├── declarations.d.ts │ ├── index.tsx │ ├── msal-auth │ │ ├── AuthProvider.tsx │ │ ├── AuthWrapper.tsx │ │ ├── msaConfig.ts │ │ ├── msalInstance.tsx │ │ └── useAuth.ts │ └── store │ │ ├── index.ts │ │ ├── rootReducer.ts │ │ └── slices │ │ ├── centerPanelSlice.ts │ │ ├── defaultPageSlice.ts │ │ ├── leftPanelSlice.ts │ │ ├── loaderSlice.ts │ │ └── rightPanelSlice.ts │ ├── tsconfig.json │ └── yarn.lock └── tests └── e2e-test ├── .gitignore ├── base ├── __init__.py └── base.py ├── config └── constants.py ├── pages ├── HomePage.py ├── __init__.py └── loginPage.py ├── pytest.ini ├── readme.MD ├── requirements.txt ├── testdata ├── ClaimForm_1.pdf └── FabrikamInvoice_1.pdf └── tests ├── __init__.py ├── conftest.py └── test_contentProcessing_gp_tc.py /.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.coverage -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/setupEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.devcontainer/setupEnv.sh -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/subtask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/ISSUE_TEMPLATE/subtask.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/azure-dev.yaml -------------------------------------------------------------------------------- /.github/workflows/broken-links-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/broken-links-checker.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/build-docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/deploy-linux.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-orchestrator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/deploy-orchestrator.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/deploy-windows.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/job-cleanup-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/job-cleanup-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/job-deploy-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/job-deploy-linux.yml -------------------------------------------------------------------------------- /.github/workflows/job-deploy-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/job-deploy-windows.yml -------------------------------------------------------------------------------- /.github/workflows/job-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/job-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/job-docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/job-docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/job-send-notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/job-send-notification.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/pr-title-checker.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.github/workflows/telemetry-template-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/telemetry-template-check.yml -------------------------------------------------------------------------------- /.github/workflows/test-automation-v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/test-automation-v2.yml -------------------------------------------------------------------------------- /.github/workflows/test-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/test-automation.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /TRANSPARENCY_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/TRANSPARENCY_FAQ.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/azure.yaml -------------------------------------------------------------------------------- /coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/coverage.xml -------------------------------------------------------------------------------- /docs/ACRBuildAndPushGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/ACRBuildAndPushGuide.md -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/AVMPostDeploymentGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/AVMPostDeploymentGuide.md -------------------------------------------------------------------------------- /docs/AzureAccountSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/AzureAccountSetup.md -------------------------------------------------------------------------------- /docs/AzureGPTQuotaSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/AzureGPTQuotaSettings.md -------------------------------------------------------------------------------- /docs/ConfigureAppAuthentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/ConfigureAppAuthentication.md -------------------------------------------------------------------------------- /docs/CustomizeSchemaData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/CustomizeSchemaData.md -------------------------------------------------------------------------------- /docs/CustomizeSystemPrompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/CustomizeSystemPrompts.md -------------------------------------------------------------------------------- /docs/CustomizingAzdParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/CustomizingAzdParameters.md -------------------------------------------------------------------------------- /docs/DeleteResourceGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/DeleteResourceGroup.md -------------------------------------------------------------------------------- /docs/DeploymentGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/DeploymentGuide.md -------------------------------------------------------------------------------- /docs/GoldenPathWorkflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/GoldenPathWorkflows.md -------------------------------------------------------------------------------- /docs/LogAnalyticsReplicationDisable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/LogAnalyticsReplicationDisable.md -------------------------------------------------------------------------------- /docs/ManualAppRegistrationConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/ManualAppRegistrationConfiguration.md -------------------------------------------------------------------------------- /docs/ProcessingPipelineApproach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/ProcessingPipelineApproach.md -------------------------------------------------------------------------------- /docs/SampleWorkflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/SampleWorkflow.md -------------------------------------------------------------------------------- /docs/TechnicalArchitecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/TechnicalArchitecture.md -------------------------------------------------------------------------------- /docs/TroubleShootingSteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/TroubleShootingSteps.md -------------------------------------------------------------------------------- /docs/images/AddDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AddDetails.png -------------------------------------------------------------------------------- /docs/images/AddPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AddPlatform.png -------------------------------------------------------------------------------- /docs/images/AddRedirectURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AddRedirectURL.png -------------------------------------------------------------------------------- /docs/images/AppAuthIdentityProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AppAuthIdentityProvider.png -------------------------------------------------------------------------------- /docs/images/AppAuthIdentityProviderAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AppAuthIdentityProviderAdd.png -------------------------------------------------------------------------------- /docs/images/AppAuthIdentityProviderAdded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AppAuthIdentityProviderAdded.png -------------------------------------------------------------------------------- /docs/images/AppAuthentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AppAuthentication.png -------------------------------------------------------------------------------- /docs/images/AppAuthenticationIdentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AppAuthenticationIdentity.png -------------------------------------------------------------------------------- /docs/images/AppServiceContainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AppServiceContainer.png -------------------------------------------------------------------------------- /docs/images/Appregistrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/Appregistrations.png -------------------------------------------------------------------------------- /docs/images/AzureHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/AzureHomePage.png -------------------------------------------------------------------------------- /docs/images/CheckAPIService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/CheckAPIService.png -------------------------------------------------------------------------------- /docs/images/ContainerApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/ContainerApp.png -------------------------------------------------------------------------------- /docs/images/DeleteRG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/DeleteRG.png -------------------------------------------------------------------------------- /docs/images/MicrosoftEntraID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/MicrosoftEntraID.png -------------------------------------------------------------------------------- /docs/images/NewRegistration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/NewRegistration.png -------------------------------------------------------------------------------- /docs/images/SchemaFileRegistration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/SchemaFileRegistration.png -------------------------------------------------------------------------------- /docs/images/Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/Web.png -------------------------------------------------------------------------------- /docs/images/WebAppURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/WebAppURL.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_api_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_api_1.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_api_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_api_2.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_api_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_api_3.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_web_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_web_1.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_web_2.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_web_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_web_3.png -------------------------------------------------------------------------------- /docs/images/add_auth_provider_web_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_auth_provider_web_4.png -------------------------------------------------------------------------------- /docs/images/add_client_id_to_api_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_client_id_to_api_1.png -------------------------------------------------------------------------------- /docs/images/add_client_id_to_api_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_client_id_to_api_2.png -------------------------------------------------------------------------------- /docs/images/add_client_id_to_web_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_client_id_to_web_1.png -------------------------------------------------------------------------------- /docs/images/add_client_id_to_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_client_id_to_web_2.png -------------------------------------------------------------------------------- /docs/images/add_client_id_to_web_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/add_client_id_to_web_3.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_api_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_api_1.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_api_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_api_2.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_api_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_api_3.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_1.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_10.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_2.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_2_without_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_2_without_preview.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_3.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_3_without_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_3_without_preview.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_4.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_4_without_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_4_without_preview.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_5.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_6.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_7.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_8.png -------------------------------------------------------------------------------- /docs/images/configure_app_registration_web_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/configure_app_registration_web_9.png -------------------------------------------------------------------------------- /docs/images/cp-post-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/cp-post-deployment.png -------------------------------------------------------------------------------- /docs/images/deleteservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/deleteservices.png -------------------------------------------------------------------------------- /docs/images/git_bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/git_bash.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_api_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_api_1.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_api_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_api_2.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_api_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_api_3.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_api_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_api_5.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_1.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_2.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_3.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_4.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_5.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_6.png -------------------------------------------------------------------------------- /docs/images/manual_register_app_web_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/manual_register_app_web_7.png -------------------------------------------------------------------------------- /docs/images/quota-check-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/quota-check-output.png -------------------------------------------------------------------------------- /docs/images/re_use_foundry_project/azure_ai_foundry_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/re_use_foundry_project/azure_ai_foundry_list.png -------------------------------------------------------------------------------- /docs/images/re_use_foundry_project/navigate_to_projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/re_use_foundry_project/navigate_to_projects.png -------------------------------------------------------------------------------- /docs/images/re_use_foundry_project/project_resource_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/re_use_foundry_project/project_resource_id.png -------------------------------------------------------------------------------- /docs/images/re_use_log/logAnalytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/re_use_log/logAnalytics.png -------------------------------------------------------------------------------- /docs/images/re_use_log/logAnalyticsJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/re_use_log/logAnalyticsJson.png -------------------------------------------------------------------------------- /docs/images/re_use_log/logAnalyticsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/re_use_log/logAnalyticsList.png -------------------------------------------------------------------------------- /docs/images/readme/approach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/approach.png -------------------------------------------------------------------------------- /docs/images/readme/business-scenario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/business-scenario.png -------------------------------------------------------------------------------- /docs/images/readme/processing-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/processing-pipeline.png -------------------------------------------------------------------------------- /docs/images/readme/quick-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/quick-deploy.png -------------------------------------------------------------------------------- /docs/images/readme/solution-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/solution-architecture.png -------------------------------------------------------------------------------- /docs/images/readme/solution-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/solution-overview.png -------------------------------------------------------------------------------- /docs/images/readme/supporting-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/supporting-documentation.png -------------------------------------------------------------------------------- /docs/images/readme/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/readme/ui.png -------------------------------------------------------------------------------- /docs/images/resource-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/resource-groups.png -------------------------------------------------------------------------------- /docs/images/resourcegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/resourcegroup.png -------------------------------------------------------------------------------- /docs/images/resourcegroup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/resourcegroup1.png -------------------------------------------------------------------------------- /docs/images/sampleworkflow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/sampleworkflow1.png -------------------------------------------------------------------------------- /docs/images/schema-register-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/schema-register-api.png -------------------------------------------------------------------------------- /docs/images/update_env_app_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/update_env_app_1.png -------------------------------------------------------------------------------- /docs/images/update_env_app_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/update_env_app_1_1.png -------------------------------------------------------------------------------- /docs/images/update_env_app_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/images/update_env_app_2.png -------------------------------------------------------------------------------- /docs/quota_check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/quota_check.md -------------------------------------------------------------------------------- /docs/re-use-foundry-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/re-use-foundry-project.md -------------------------------------------------------------------------------- /docs/re-use-log-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/docs/re-use-log-analytics.md -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/main.json -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /infra/main.waf.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/main.waf.parameters.json -------------------------------------------------------------------------------- /infra/modules/account/aifoundry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/account/aifoundry.bicep -------------------------------------------------------------------------------- /infra/modules/account/modules/dependencies.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/account/modules/dependencies.bicep -------------------------------------------------------------------------------- /infra/modules/account/modules/keyVaultExport.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/account/modules/keyVaultExport.bicep -------------------------------------------------------------------------------- /infra/modules/account/modules/project.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/account/modules/project.bicep -------------------------------------------------------------------------------- /infra/modules/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/container-registry.bicep -------------------------------------------------------------------------------- /infra/modules/key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/key-vault.bicep -------------------------------------------------------------------------------- /infra/modules/log-analytics-workspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/log-analytics-workspace.bicep -------------------------------------------------------------------------------- /infra/modules/managed-identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/managed-identity.bicep -------------------------------------------------------------------------------- /infra/modules/virtualNetwork.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/modules/virtualNetwork.bicep -------------------------------------------------------------------------------- /infra/scripts/checkquota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/scripts/checkquota.sh -------------------------------------------------------------------------------- /infra/scripts/docker-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/scripts/docker-build.ps1 -------------------------------------------------------------------------------- /infra/scripts/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/scripts/docker-build.sh -------------------------------------------------------------------------------- /infra/scripts/post_deployment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/scripts/post_deployment.ps1 -------------------------------------------------------------------------------- /infra/scripts/post_deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/scripts/post_deployment.sh -------------------------------------------------------------------------------- /infra/scripts/quota_check_params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/scripts/quota_check_params.sh -------------------------------------------------------------------------------- /infra/vscode_web/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/.env -------------------------------------------------------------------------------- /infra/vscode_web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/.gitignore -------------------------------------------------------------------------------- /infra/vscode_web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/LICENSE -------------------------------------------------------------------------------- /infra/vscode_web/README-noazd.md: -------------------------------------------------------------------------------- 1 | # VS Code for the Web - Azure AI Foundry Templates 2 | 3 | -------------------------------------------------------------------------------- /infra/vscode_web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/README.md -------------------------------------------------------------------------------- /infra/vscode_web/codeSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/codeSample.py -------------------------------------------------------------------------------- /infra/vscode_web/endpoint-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/endpoint-requirements.txt -------------------------------------------------------------------------------- /infra/vscode_web/endpointCodeSample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/endpointCodeSample.py -------------------------------------------------------------------------------- /infra/vscode_web/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/index.json -------------------------------------------------------------------------------- /infra/vscode_web/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/install.sh -------------------------------------------------------------------------------- /infra/vscode_web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/infra/vscode_web/requirements.txt -------------------------------------------------------------------------------- /src/ContentProcessor/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessor/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /src/ContentProcessor/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/.dockerignore -------------------------------------------------------------------------------- /src/ContentProcessor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/.gitignore -------------------------------------------------------------------------------- /src/ContentProcessor/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /src/ContentProcessor/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/.vscode/launch.json -------------------------------------------------------------------------------- /src/ContentProcessor/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/.vscode/settings.json -------------------------------------------------------------------------------- /src/ContentProcessor/ContentProcessor.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/ContentProcessor.code-workspace -------------------------------------------------------------------------------- /src/ContentProcessor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/README.md -------------------------------------------------------------------------------- /src/ContentProcessor/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/conftest.py -------------------------------------------------------------------------------- /src/ContentProcessor/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/pyproject.toml -------------------------------------------------------------------------------- /src/ContentProcessor/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/pytest.ini -------------------------------------------------------------------------------- /src/ContentProcessor/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/requirements.txt -------------------------------------------------------------------------------- /src/ContentProcessor/src/helpers/azure_credential_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/helpers/azure_credential_utils.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/application/application_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/application/application_configuration.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/application/application_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/application/application_context.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/application/env_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/application/env_config.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/app_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/azure_helper/app_configuration.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/azure_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/azure_helper/azure_openai.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/comsos_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/azure_helper/comsos_mongo.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/content_understanding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/azure_helper/content_understanding.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/model/content_understanding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/azure_helper/model/content_understanding.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/azure_helper/storage_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/azure_helper/storage_blob.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/base/application_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/base/application_main.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/base/application_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/base/application_models.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/models/content_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/models/content_process.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/mime_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/mime_types.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/pipeline_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/pipeline_data.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/pipeline_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/pipeline_file.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/pipeline_message_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/pipeline_message_base.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/pipeline_message_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/pipeline_message_context.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/pipeline_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/pipeline_status.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/pipeline_step_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/pipeline_step_result.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/entities/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/entities/schema.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/evaluate_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/evaluate_handler.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/extract_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/extract_handler.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/comparison.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/confidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/confidence.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/content_understanding_confidence_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/content_understanding_confidence_evaluator.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/model.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/openai_confidence_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/logics/evaluate_handler/openai_confidence_evaluator.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/map_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/map_handler.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/save_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/save_handler.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/handlers/transform_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/handlers/transform_handler.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/pipeline_queue_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/pipeline_queue_helper.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/pipeline_step_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/pipeline_step_helper.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/pipeline/queue_handler_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/pipeline/queue_handler_base.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/process_host/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/process_host/handler_process_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/process_host/handler_process_host.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/process_host/handler_type_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/process_host/handler_type_loader.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/utils/base64_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/utils/base64_util.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/utils/remote_module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/utils/remote_module_loader.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/utils/stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/utils/stopwatch.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/libs/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/libs/utils/utils.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/main.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/azure_helper/test_cosmos_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/azure_helper/test_cosmos_mongo.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/azure_helper/test_storage_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/azure_helper/test_storage_blob.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/conftest.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/helpers/test_azure_credential_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/helpers/test_azure_credential_utils.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/pipeline/entities/test_pipeline_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/pipeline/entities/test_pipeline_data.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/pipeline/test_pipeline_queue_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/pipeline/test_pipeline_queue_helper.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/pipeline/test_queue_handler_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/pipeline/test_queue_handler_base.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/process_host/test_handler_type_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/process_host/test_handler_type_loader.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/test_main.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/utils/test_base64_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/utils/test_base64_util.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/utils/test_stopwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/utils/test_stopwatch.py -------------------------------------------------------------------------------- /src/ContentProcessor/src/tests/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/src/tests/utils/test_utils.py -------------------------------------------------------------------------------- /src/ContentProcessor/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessor/uv.lock -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.dockerignore -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.gitignore -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.pre-commit-config.yaml -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.vscode/launch.json -------------------------------------------------------------------------------- /src/ContentProcessorAPI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/.vscode/settings.json -------------------------------------------------------------------------------- /src/ContentProcessorAPI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessorAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/README.md -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/.env.dev -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/appsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/appsettings.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/dependencies.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/app_configuration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/app_configuration/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/libs/app_configuration/helper.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/cosmos_db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/cosmos_db/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/libs/cosmos_db/helper.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/storage_blob/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/storage_blob/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/libs/storage_blob/helper.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/storage_queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/libs/storage_queue/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/libs/storage_queue/helper.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/main.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/contentprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/contentprocessor.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/logics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/logics/contentprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/logics/contentprocessor.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/logics/schemavault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/logics/schemavault.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/models/contentprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/models/contentprocessor/content_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/models/contentprocessor/content_process.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/models/contentprocessor/mime_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/models/contentprocessor/mime_types.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/models/contentprocessor/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/models/contentprocessor/model.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/models/schmavault/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/models/schmavault/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/models/schmavault/model.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/routers/schemavault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/routers/schemavault.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/tests/libs/test_app_configuration_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/tests/libs/test_app_configuration_helper.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/tests/libs/test_cosmos_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/tests/libs/test_cosmos_db.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/tests/libs/test_storage_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/tests/libs/test_storage_blob.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/tests/routers/test_contentprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/tests/routers/test_contentprocessor.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/tests/routers/test_schemavault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/tests/routers/test_schemavault.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/app/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/app/tests/test_main.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/conftest.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/helpers/azure_credential_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/helpers/azure_credential_utils.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/pyproject.toml -------------------------------------------------------------------------------- /src/ContentProcessorAPI/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/pytest.ini -------------------------------------------------------------------------------- /src/ContentProcessorAPI/register_schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/register_schema.sh -------------------------------------------------------------------------------- /src/ContentProcessorAPI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/requirements.txt -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_1.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_2.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_3.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_4.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/invoices/FabrikamInvoice_5.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_1.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_2.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_3.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_4.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_5.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_6.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/ClaimForm_7.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/propertyclaims/claimform_handwritten_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/propertyclaims/claimform_handwritten_1.pdf -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/schemas/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/schemas/invoice.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/schemas/propertyclaim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/schemas/propertyclaim.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/schemas/register_schema.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/schemas/register_schema.ps1 -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/schemas/register_schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/schemas/register_schema.sh -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/schemas/schema_info_ps1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/schemas/schema_info_ps1.json -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/schemas/schema_info_sh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/schemas/schema_info_sh.json -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/upload_files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/upload_files.ps1 -------------------------------------------------------------------------------- /src/ContentProcessorAPI/samples/upload_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/samples/upload_files.sh -------------------------------------------------------------------------------- /src/ContentProcessorAPI/test_http/invoke_APIs.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/test_http/invoke_APIs.http -------------------------------------------------------------------------------- /src/ContentProcessorAPI/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/tests/conftest.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/tests/helpers/test_azure_credential_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/tests/helpers/test_azure_credential_utils.py -------------------------------------------------------------------------------- /src/ContentProcessorAPI/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorAPI/uv.lock -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.devcontainer/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.devcontainer/base.Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.dockerignore -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.env -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.gitignore -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.prettierrc -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.vscode/launch.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.vscode/settings.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/.vscode/tasks.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/Dockerfile -------------------------------------------------------------------------------- /src/ContentProcessorWeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/README.md -------------------------------------------------------------------------------- /src/ContentProcessorWeb/config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/config-overrides.js -------------------------------------------------------------------------------- /src/ContentProcessorWeb/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/env.sh -------------------------------------------------------------------------------- /src/ContentProcessorWeb/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/eslint.config.mjs -------------------------------------------------------------------------------- /src/ContentProcessorWeb/nginx-custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/nginx-custom.conf -------------------------------------------------------------------------------- /src/ContentProcessorWeb/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/package-lock.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/package.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/public/favicon.ico -------------------------------------------------------------------------------- /src/ContentProcessorWeb/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/public/index.html -------------------------------------------------------------------------------- /src/ContentProcessorWeb/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/public/manifest.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/public/robots.txt -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/App.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/DialogComponent/DialogComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/DialogComponent/DialogComponent.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/DialogComponent/DialogComponentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/DialogComponent/DialogComponentTypes.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/DocumentViewer/DocumentViewer.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/DocumentViewer/DocumentViewer.styles.scss -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/DocumentViewer/DocumentViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/DocumentViewer/DocumentViewer.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/Header/Header.css -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/Header/Header.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/JSONEditor/JSONEditor.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/JSONEditor/JSONEditor.styles.scss -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/JSONEditor/JSONEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/JSONEditor/JSONEditor.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/Spinner/Spinner.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/Spinner/Spinner.styles.scss -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/UploadContent/UploadFilesModal.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/UploadContent/UploadFilesModal.styles.scss -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Components/UploadContent/UploadFilesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Components/UploadContent/UploadFilesModal.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Hooks/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Hooks/README.txt -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Hooks/useConsoleSuppression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Hooks/useConsoleSuppression.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Hooks/useFileType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Hooks/useFileType.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Hooks/useHeaderHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Hooks/useHeaderHooks.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Hooks/usePanelHooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Hooks/usePanelHooks.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Hooks/useSwaggerPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Hooks/useSwaggerPreview.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Imports/MainLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Imports/MainLogo.svg -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Imports/MsftColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Imports/MsftColor.svg -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Imports/bundleIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Imports/bundleIcons.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/CustomCellRender.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/CustomCellRender.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/ProcessQueueGrid.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/ProcessQueueGrid.styles.scss -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/ProcessQueueGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/ProcessQueueGrid.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/ProcessQueueGridTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessQueueGrid/ProcessQueueGridTypes.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessSteps/ProcessSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/ProcessSteps/ProcessSteps.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/SchemaDropdown/SchemaDropdown.styles.scss: -------------------------------------------------------------------------------- 1 | .comboboxClass{ 2 | width: 100%; 3 | } -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/SchemaDropdown/SchemaDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/SchemaDropdown/SchemaDropdown.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Components/SchemaDropdown/SchemaDropdownTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Components/SchemaDropdown/SchemaDropdownTypes.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/PanelCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/PanelCenter.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/PanelLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/PanelLeft.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/PanelRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/PanelRight.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/Panels.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/Panels.styles.scss -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/DefaultPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/DefaultPage/index.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/HomePage.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Pages/NotFound.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Services/httpUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Services/httpUtility.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Styles/App.css -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/Styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/Styles/index.css -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/declarations.d.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/index.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/msal-auth/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/msal-auth/AuthProvider.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/msal-auth/AuthWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/msal-auth/AuthWrapper.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/msal-auth/msaConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/msal-auth/msaConfig.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/msal-auth/msalInstance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/msal-auth/msalInstance.tsx -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/msal-auth/useAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/msal-auth/useAuth.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/index.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/rootReducer.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/slices/centerPanelSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/slices/centerPanelSlice.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/slices/defaultPageSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/slices/defaultPageSlice.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/slices/leftPanelSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/slices/leftPanelSlice.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/slices/loaderSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/slices/loaderSlice.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/src/store/slices/rightPanelSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/src/store/slices/rightPanelSlice.ts -------------------------------------------------------------------------------- /src/ContentProcessorWeb/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/tsconfig.json -------------------------------------------------------------------------------- /src/ContentProcessorWeb/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/src/ContentProcessorWeb/yarn.lock -------------------------------------------------------------------------------- /tests/e2e-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/.gitignore -------------------------------------------------------------------------------- /tests/e2e-test/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/base/base.py -------------------------------------------------------------------------------- /tests/e2e-test/config/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/config/constants.py -------------------------------------------------------------------------------- /tests/e2e-test/pages/HomePage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/pages/HomePage.py -------------------------------------------------------------------------------- /tests/e2e-test/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/pages/loginPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/pages/loginPage.py -------------------------------------------------------------------------------- /tests/e2e-test/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/pytest.ini -------------------------------------------------------------------------------- /tests/e2e-test/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/readme.MD -------------------------------------------------------------------------------- /tests/e2e-test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/requirements.txt -------------------------------------------------------------------------------- /tests/e2e-test/testdata/ClaimForm_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/testdata/ClaimForm_1.pdf -------------------------------------------------------------------------------- /tests/e2e-test/testdata/FabrikamInvoice_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/testdata/FabrikamInvoice_1.pdf -------------------------------------------------------------------------------- /tests/e2e-test/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e-test/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/tests/conftest.py -------------------------------------------------------------------------------- /tests/e2e-test/tests/test_contentProcessing_gp_tc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/content-processing-solution-accelerator/HEAD/tests/e2e-test/tests/test_contentProcessing_gp_tc.py --------------------------------------------------------------------------------