├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── images ├── HuggingFace_input_name.png ├── app_landing_page.png ├── architecture_original_plus_huggingface_v2.png ├── architecture_white.png ├── cognitive_search_index1.png ├── deploy_yml.png ├── edit_parameters1.png ├── edit_parameters3.png ├── find_static_web_app2.png ├── get_publish_profile.png ├── high-level-architecture-may-2023.png ├── high-level-architecture.png ├── home.png ├── huggingFace_model_name.png ├── hugging_face_models.png ├── hugging_face_selections.png ├── json-output.png ├── navigate_to_cosmos_db.png ├── navigating_cosmos_db_explorer.png ├── newly_created_function_apps.png ├── overview.png ├── pdf_2views.png ├── personal_access_tokens_configuration.png ├── sample-pipelines-may-2023.png ├── sample_output_call_center_mining.png ├── sample_pipeline_call_center_mining.png ├── secrets_actions.png ├── select_stage2.png ├── select_stage_next1v2.png ├── set_up_workflow_v2.png ├── set_up_workflow_v3.png ├── settings_upper_right.png ├── settings_upper_right_v2.png ├── static_webapp_find_url.png ├── text_options.png ├── update3valueFields.png ├── updateDeploy_yml.png ├── upload_docs2.png └── web_app_blank4.png ├── src ├── backend │ ├── api │ │ ├── .dockerignore │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── BlobSplitTrigger │ │ │ ├── function.json │ │ │ ├── index.ts │ │ │ └── readme.md │ │ ├── Dockerfile │ │ ├── DocumentTrigger │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── README.md │ │ ├── RabbitMQTrigger │ │ │ └── index.ts │ │ ├── RedisStatusTrigger │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── ServiceBusQueueTrigger │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── autocomplete │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── azure-pipelines.yml │ │ ├── cogsearch.ts │ │ ├── cogsearch │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── cogsearchdocumentcount │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── config │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── db.ts │ │ ├── dbdocumentsbypipeline │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── documents │ │ │ ├── function.json │ │ │ ├── index.ts │ │ │ └── uploadBlob.ts │ │ ├── engine │ │ │ ├── commonTrigger.ts │ │ │ ├── index.ts │ │ │ ├── serviceCatalog.ts │ │ │ └── types.ts │ │ ├── host.json │ │ ├── images │ │ │ └── web_app_ui3.png │ │ ├── indexerStatus │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── indexers │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── indexes │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── isdeployed │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── openaianswer │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── price │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── queue.ts │ │ ├── redisstatus │ │ │ └── index.ts │ │ ├── search │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── services │ │ │ ├── automlner.ts │ │ │ ├── blob.ts │ │ │ ├── changeOutput.ts │ │ │ ├── cogsearch.ts │ │ │ ├── contentModerator.ts │ │ │ ├── cosmosdb.ts │ │ │ ├── db.ts │ │ │ ├── documentTranslation.ts │ │ │ ├── formrec.ts │ │ │ ├── huggingface.ts │ │ │ ├── jsonToText.ts │ │ │ ├── language.ts │ │ │ ├── messageQueue.ts │ │ │ ├── ocr.ts │ │ │ ├── openai.ts │ │ │ ├── prebuilt │ │ │ │ ├── prebuilt-businessCard.ts │ │ │ │ ├── prebuilt-document.ts │ │ │ │ ├── prebuilt-healthInsuranceCard.us.ts │ │ │ │ ├── prebuilt-idDocument.ts │ │ │ │ ├── prebuilt-invoice.ts │ │ │ │ ├── prebuilt-layout.ts │ │ │ │ ├── prebuilt-read.ts │ │ │ │ ├── prebuilt-receipt.ts │ │ │ │ └── prebuilt-tax.us.w2.ts │ │ │ ├── preprocess.ts │ │ │ ├── redactPdf.ts │ │ │ ├── redis.ts │ │ │ ├── speech.ts │ │ │ ├── spliceDocument.ts │ │ │ ├── splitPdf.ts │ │ │ ├── storage.ts │ │ │ ├── tableParser.ts │ │ │ ├── test.ts │ │ │ ├── textSegmentation.ts │ │ │ ├── translate.ts │ │ │ ├── videoIndexer.ts │ │ │ ├── vision.ts │ │ │ └── xml.ts │ │ ├── splitdocuments │ │ │ ├── function.json │ │ │ ├── index.ts │ │ │ └── uploadBlob.ts │ │ ├── status │ │ │ ├── function.json │ │ │ └── index.ts │ │ ├── storage.ts │ │ ├── tsconfig.json │ │ ├── vectorSearch │ │ │ ├── function.json │ │ │ └── index.ts │ │ └── viewpdf │ │ │ ├── function.json │ │ │ └── index.ts │ └── huggingface │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── HuggingFace.py │ │ ├── Preprocess.py │ │ ├── analyze │ │ ├── __init__.py │ │ └── function.json │ │ ├── approaches │ │ ├── agents │ │ │ └── custom.py │ │ ├── approach.py │ │ ├── chains │ │ │ └── custom.py │ │ ├── chataggregate.py │ │ ├── chatreadretrieveread.py │ │ ├── custom.py │ │ ├── readdecomposeask.py │ │ ├── readretrieveread.py │ │ ├── retrievers │ │ │ ├── cogsearchfacetsretriever.py │ │ │ ├── cogsearchretriever.py │ │ │ └── vectorretriever.py │ │ └── retrievethenread.py │ │ ├── chat │ │ ├── __init__.py │ │ └── function.json │ │ ├── host.json │ │ ├── langchainadapters.py │ │ ├── lookuptool.py │ │ ├── preprocess │ │ ├── __init__.py │ │ └── function.json │ │ ├── requirements.txt │ │ ├── text.py │ │ └── textSegmentation │ │ ├── __init__.py │ │ └── function.json ├── deploy │ ├── build.bat │ ├── helm │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── backend-deployment.yaml │ │ │ ├── backend-hpa.yaml │ │ │ ├── backend-secret.yaml │ │ │ ├── backend-service.yaml │ │ │ ├── frontend-client-deployment.yaml │ │ │ ├── frontend-client-hpa.yaml │ │ │ ├── frontend-client-service.yaml │ │ │ ├── frontend-server-deployment.yaml │ │ │ ├── frontend-server-hpa.yaml │ │ │ ├── frontend-server-secret.yaml │ │ │ ├── frontend-server-service.yaml │ │ │ ├── ingress.yaml │ │ │ ├── read-deployment.yaml │ │ │ ├── read-hpa.yaml │ │ │ ├── read-secret.yaml │ │ │ ├── read-service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── stt-deployment.yaml │ │ │ ├── stt-hpa.yaml │ │ │ ├── stt-secret.yaml │ │ │ ├── stt-service.yaml │ │ │ ├── sttBatch-config.yaml │ │ │ ├── sttBatch-deployment.yaml │ │ │ ├── sttBatch-hpa.yaml │ │ │ ├── sttBatch-secret.yaml │ │ │ ├── sttBatch-service.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ └── values.example.yaml │ ├── pv.yaml │ ├── pvc.yaml │ └── pvc2.yaml └── frontend │ ├── .dockerignore │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── Dockerfile │ ├── README.md │ ├── api │ ├── .dockerignore │ ├── .funcignore │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── Dockerfile │ ├── autocomplete │ │ ├── function.json │ │ └── index.ts │ ├── chat │ │ ├── function.json │ │ ├── index.ts │ │ └── test │ │ │ ├── agentPayload.ts │ │ │ ├── chainpayload.ts │ │ │ └── index.ts │ ├── cogsearch.ts │ ├── cogsearch │ │ ├── function.json │ │ └── index.ts │ ├── cogsearchdocumentcount │ │ ├── function.json │ │ └── index.ts │ ├── config │ │ ├── function.json │ │ └── index.ts │ ├── db.ts │ ├── dbdocumentsbypipeline │ │ ├── function.json │ │ └── index.ts │ ├── documents │ │ ├── function.json │ │ ├── index.ts │ │ └── uploadBlob.ts │ ├── host.json │ ├── indexerStatus │ │ ├── function.json │ │ └── index.ts │ ├── indexers │ │ ├── function.json │ │ └── index.ts │ ├── indexes │ │ ├── function.json │ │ └── index.ts │ ├── isdeployed │ │ ├── function.json │ │ └── index.ts │ ├── langchainlibs │ │ ├── chains │ │ │ └── cogSearchRetrievalQA.ts │ │ ├── retrievers │ │ │ └── cogsearch.ts │ │ └── tools │ │ │ └── cogsearch.ts │ ├── local.settings.example.json │ ├── openaianswer │ │ ├── function.json │ │ └── index.ts │ ├── package-lock.json │ ├── package.json │ ├── price │ │ ├── function.json │ │ └── index.ts │ ├── queue.ts │ ├── search │ │ ├── function.json │ │ └── index.ts │ ├── splitdocuments │ │ ├── function.json │ │ ├── index.ts │ │ └── uploadBlob.ts │ ├── status │ │ ├── function.json │ │ └── index.ts │ ├── storage.ts │ ├── tsconfig.json │ ├── vectorSearch │ │ ├── function.json │ │ └── index.ts │ └── viewpdf │ │ ├── function.json │ │ └── index.ts │ ├── images │ ├── access_permission.png │ ├── clone_repository_status.png │ ├── cloned_repository.png │ ├── create_project2.png │ ├── find_static_web_app2.png │ ├── model_pipeline_run_part1.png │ ├── model_pipeline_run_part1_detailed_log.png │ ├── obo-la-architecture2.png │ ├── project_settings2.png │ ├── sample_architecture3.jpg │ ├── sample_architecture3.png │ ├── web_app_blank2.png │ ├── web_app_file_upload_successful.png │ └── web_app_ui3.png │ ├── nginx │ └── nginx.conf │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── repoDescription.json │ ├── repoDescription2.json │ ├── src │ ├── App │ │ ├── App.jsx │ │ ├── Footer.jsx │ │ ├── HeaderComponent.jsx │ │ └── Home.jsx │ ├── Components │ │ ├── Dialogs │ │ │ ├── AnalyzeImageDialog.jsx │ │ │ ├── ChangeDataDialog.jsx │ │ │ ├── CopyDialog.jsx │ │ │ ├── DocumentTranslationDialog.jsx │ │ │ ├── FormRecCustomDialog.jsx │ │ │ ├── HuggingFaceDialog.jsx │ │ │ ├── JSONToTextDialog.jsx │ │ │ ├── LanguageCustomNerDialog.jsx │ │ │ ├── LanguageDialog.jsx │ │ │ ├── LanguageMultiClassifyDialog.jsx │ │ │ ├── LanguageSingleClassifyDialog.jsx │ │ │ ├── OpenAiGenericDialog.jsx │ │ │ ├── OpenAiRestDialog.jsx │ │ │ ├── SpliceDocument.jsx │ │ │ ├── TableToText.jsx │ │ │ ├── ToTxtDialog.jsx │ │ │ ├── ToTxtDialogByPage.jsx │ │ │ └── VideoIndexerDialog.jsx │ │ ├── Language │ │ │ └── LanguageDropdown.jsx │ │ ├── OptionCard.jsx │ │ ├── Prices │ │ │ ├── Prices.jsx │ │ │ └── price.js │ │ ├── SelectPipeline.jsx │ │ ├── SpeechToText.jsx │ │ ├── searchComponents │ │ │ ├── App │ │ │ │ ├── App.css │ │ │ │ └── App.js │ │ │ ├── axios.js │ │ │ ├── components │ │ │ │ ├── AppFooter │ │ │ │ │ ├── AppFooter.css │ │ │ │ │ └── AppFooter.js │ │ │ │ ├── AppHeader │ │ │ │ │ ├── AppHeader.css │ │ │ │ │ └── AppHeader.js │ │ │ │ ├── AppHeaderAuth │ │ │ │ │ └── AppHeaderAuth.js │ │ │ │ ├── Facets │ │ │ │ │ ├── CheckboxFacet │ │ │ │ │ │ ├── CheckboxFacet.css │ │ │ │ │ │ └── CheckboxFacet.js │ │ │ │ │ ├── Facets.css │ │ │ │ │ └── Facets.js │ │ │ │ ├── Pager │ │ │ │ │ ├── Pager.css │ │ │ │ │ └── Pager.js │ │ │ │ ├── Results │ │ │ │ │ ├── Result │ │ │ │ │ │ ├── Result.css │ │ │ │ │ │ └── Result.js │ │ │ │ │ ├── Results.css │ │ │ │ │ ├── Results.js │ │ │ │ │ └── TableResult │ │ │ │ │ │ ├── TableResult.css │ │ │ │ │ │ └── TableResult.js │ │ │ │ └── SearchBar │ │ │ │ │ ├── SearchBar.css │ │ │ │ │ ├── SearchBar.js │ │ │ │ │ └── Suggestions │ │ │ │ │ ├── Suggestions.css │ │ │ │ │ └── Suggestions.js │ │ │ ├── contexts │ │ │ │ └── AuthContext.js │ │ │ ├── images │ │ │ │ ├── basic-arch.png │ │ │ │ ├── config.png │ │ │ │ ├── setup.png │ │ │ │ ├── static-web.png │ │ │ │ ├── use-template.png │ │ │ │ └── web-app.png │ │ │ ├── index.js │ │ │ ├── pages │ │ │ │ ├── Details │ │ │ │ │ ├── Details.css │ │ │ │ │ └── Details.js │ │ │ │ ├── Home │ │ │ │ │ ├── Home.css │ │ │ │ │ └── Home.js │ │ │ │ └── Search │ │ │ │ │ ├── Search.css │ │ │ │ │ └── Search.js │ │ │ └── setupTests.js │ │ └── serviceCatalog.js │ ├── Pages │ │ ├── CogSearch.jsx │ │ ├── Content.jsx │ │ ├── CurrentPipeline.jsx │ │ ├── OpenAiViewer.jsx │ │ ├── PipelinePreview.jsx │ │ ├── Stages.jsx │ │ ├── Upload.jsx │ │ ├── VectorSearch.jsx │ │ ├── ViewInsights.jsx │ │ └── chat │ │ │ ├── Chat.jsx │ │ │ ├── Chat.module.css │ │ │ ├── api │ │ │ ├── api.js │ │ │ ├── index.js │ │ │ └── models.js │ │ │ └── components │ │ │ ├── AnalysisPanel │ │ │ ├── AnalysisPanel.jsx │ │ │ ├── AnalysisPanel.module.css │ │ │ ├── AnalysisPanelTabs.jsx │ │ │ └── index.jsx │ │ │ ├── Answer │ │ │ ├── Answer.jsx │ │ │ ├── Answer.module.css │ │ │ ├── AnswerError.jsx │ │ │ ├── AnswerIcon.jsx │ │ │ ├── AnswerLoading.jsx │ │ │ ├── AnswerParser.jsx │ │ │ └── index.js │ │ │ ├── ClearChatButton │ │ │ ├── ClearChatButton.jsx │ │ │ ├── ClearChatButton.module.css │ │ │ └── index.jsx │ │ │ ├── Example │ │ │ ├── Example.jsx │ │ │ ├── Example.module.css │ │ │ ├── ExampleList.jsx │ │ │ └── index.jsx │ │ │ ├── QuestionInput │ │ │ ├── QuestionInput.jsx │ │ │ ├── QuestionInput.module.css │ │ │ └── index.js │ │ │ ├── SettingsButton │ │ │ ├── SettingsButton.jsx │ │ │ ├── SettingsButton.module.css │ │ │ └── index.jsx │ │ │ ├── SupportingContent │ │ │ ├── SupportingContent.jsx │ │ │ ├── SupportingContent.module.css │ │ │ ├── SupportingContentParser.js │ │ │ └── index.js │ │ │ └── UserChatMessage │ │ │ ├── UserChatMessage.jsx │ │ │ ├── UserChatMessage.module.css │ │ │ └── index.js │ ├── images │ │ ├── 260153.png │ │ ├── android.svg │ │ ├── arrow.png │ │ ├── businesscard.svg │ │ ├── customClassificationLogo.svg │ │ ├── customEntityExtractionLogo.svg │ │ ├── customform.svg │ │ ├── detectLanguageDemoLogo.svg │ │ ├── generaldoc.svg │ │ ├── idcard.svg │ │ ├── imagetbd.png │ │ ├── invoice.svg │ │ ├── keyPhrasesDemoLogo.svg │ │ ├── layoutLogo.svg │ │ ├── linkedEntitiesDemoLogo.svg │ │ ├── nerDemoLogo.svg │ │ ├── ocrLogo.svg │ │ ├── openai.svg │ │ ├── pdf.svg │ │ ├── pdfpng.png │ │ ├── piiDemoLogo.svg │ │ ├── receiptcard.svg │ │ ├── sentimentDemoLogo.svg │ │ ├── storage.svg │ │ ├── summarizationDemoLogo.svg │ │ ├── taxw2.svg │ │ ├── textToSpeech.svg │ │ └── wav.svg │ ├── index.js │ └── styles │ │ ├── Home.module.css │ │ ├── globals.css │ │ ├── index.css │ │ ├── logo.svg │ │ └── update.css │ ├── staticwebapp.config.json │ ├── swa-cli.config.json │ └── yarn.lock ├── templates ├── .gitignore ├── deploy.yml ├── main.json ├── oneclick.json ├── oneclickoai.json ├── oneclickoairedis.json ├── parameters.json.example └── privatedeploy.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /images/HuggingFace_input_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/HuggingFace_input_name.png -------------------------------------------------------------------------------- /images/app_landing_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/app_landing_page.png -------------------------------------------------------------------------------- /images/architecture_original_plus_huggingface_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/architecture_original_plus_huggingface_v2.png -------------------------------------------------------------------------------- /images/architecture_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/architecture_white.png -------------------------------------------------------------------------------- /images/cognitive_search_index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/cognitive_search_index1.png -------------------------------------------------------------------------------- /images/deploy_yml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/deploy_yml.png -------------------------------------------------------------------------------- /images/edit_parameters1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/edit_parameters1.png -------------------------------------------------------------------------------- /images/edit_parameters3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/edit_parameters3.png -------------------------------------------------------------------------------- /images/find_static_web_app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/find_static_web_app2.png -------------------------------------------------------------------------------- /images/get_publish_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/get_publish_profile.png -------------------------------------------------------------------------------- /images/high-level-architecture-may-2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/high-level-architecture-may-2023.png -------------------------------------------------------------------------------- /images/high-level-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/high-level-architecture.png -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/home.png -------------------------------------------------------------------------------- /images/huggingFace_model_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/huggingFace_model_name.png -------------------------------------------------------------------------------- /images/hugging_face_models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/hugging_face_models.png -------------------------------------------------------------------------------- /images/hugging_face_selections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/hugging_face_selections.png -------------------------------------------------------------------------------- /images/json-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/json-output.png -------------------------------------------------------------------------------- /images/navigate_to_cosmos_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/navigate_to_cosmos_db.png -------------------------------------------------------------------------------- /images/navigating_cosmos_db_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/navigating_cosmos_db_explorer.png -------------------------------------------------------------------------------- /images/newly_created_function_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/newly_created_function_apps.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/pdf_2views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/pdf_2views.png -------------------------------------------------------------------------------- /images/personal_access_tokens_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/personal_access_tokens_configuration.png -------------------------------------------------------------------------------- /images/sample-pipelines-may-2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/sample-pipelines-may-2023.png -------------------------------------------------------------------------------- /images/sample_output_call_center_mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/sample_output_call_center_mining.png -------------------------------------------------------------------------------- /images/sample_pipeline_call_center_mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/sample_pipeline_call_center_mining.png -------------------------------------------------------------------------------- /images/secrets_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/secrets_actions.png -------------------------------------------------------------------------------- /images/select_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/select_stage2.png -------------------------------------------------------------------------------- /images/select_stage_next1v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/select_stage_next1v2.png -------------------------------------------------------------------------------- /images/set_up_workflow_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/set_up_workflow_v2.png -------------------------------------------------------------------------------- /images/set_up_workflow_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/set_up_workflow_v3.png -------------------------------------------------------------------------------- /images/settings_upper_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/settings_upper_right.png -------------------------------------------------------------------------------- /images/settings_upper_right_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/settings_upper_right_v2.png -------------------------------------------------------------------------------- /images/static_webapp_find_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/static_webapp_find_url.png -------------------------------------------------------------------------------- /images/text_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/text_options.png -------------------------------------------------------------------------------- /images/update3valueFields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/update3valueFields.png -------------------------------------------------------------------------------- /images/updateDeploy_yml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/updateDeploy_yml.png -------------------------------------------------------------------------------- /images/upload_docs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/upload_docs2.png -------------------------------------------------------------------------------- /images/web_app_blank4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/images/web_app_blank4.png -------------------------------------------------------------------------------- /src/backend/api/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /src/backend/api/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/.funcignore -------------------------------------------------------------------------------- /src/backend/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/.gitignore -------------------------------------------------------------------------------- /src/backend/api/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/.vscode/extensions.json -------------------------------------------------------------------------------- /src/backend/api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/.vscode/launch.json -------------------------------------------------------------------------------- /src/backend/api/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/.vscode/settings.json -------------------------------------------------------------------------------- /src/backend/api/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/.vscode/tasks.json -------------------------------------------------------------------------------- /src/backend/api/BlobSplitTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/BlobSplitTrigger/function.json -------------------------------------------------------------------------------- /src/backend/api/BlobSplitTrigger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/BlobSplitTrigger/index.ts -------------------------------------------------------------------------------- /src/backend/api/BlobSplitTrigger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/BlobSplitTrigger/readme.md -------------------------------------------------------------------------------- /src/backend/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/Dockerfile -------------------------------------------------------------------------------- /src/backend/api/DocumentTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/DocumentTrigger/function.json -------------------------------------------------------------------------------- /src/backend/api/DocumentTrigger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/DocumentTrigger/index.ts -------------------------------------------------------------------------------- /src/backend/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/README.md -------------------------------------------------------------------------------- /src/backend/api/RabbitMQTrigger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/RabbitMQTrigger/index.ts -------------------------------------------------------------------------------- /src/backend/api/RedisStatusTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/RedisStatusTrigger/function.json -------------------------------------------------------------------------------- /src/backend/api/RedisStatusTrigger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/RedisStatusTrigger/index.ts -------------------------------------------------------------------------------- /src/backend/api/ServiceBusQueueTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/ServiceBusQueueTrigger/function.json -------------------------------------------------------------------------------- /src/backend/api/ServiceBusQueueTrigger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/ServiceBusQueueTrigger/index.ts -------------------------------------------------------------------------------- /src/backend/api/autocomplete/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/autocomplete/function.json -------------------------------------------------------------------------------- /src/backend/api/autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/autocomplete/index.ts -------------------------------------------------------------------------------- /src/backend/api/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/azure-pipelines.yml -------------------------------------------------------------------------------- /src/backend/api/cogsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/cogsearch.ts -------------------------------------------------------------------------------- /src/backend/api/cogsearch/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/cogsearch/function.json -------------------------------------------------------------------------------- /src/backend/api/cogsearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/cogsearch/index.ts -------------------------------------------------------------------------------- /src/backend/api/cogsearchdocumentcount/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/cogsearchdocumentcount/function.json -------------------------------------------------------------------------------- /src/backend/api/cogsearchdocumentcount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/cogsearchdocumentcount/index.ts -------------------------------------------------------------------------------- /src/backend/api/config/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/config/function.json -------------------------------------------------------------------------------- /src/backend/api/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/config/index.ts -------------------------------------------------------------------------------- /src/backend/api/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/db.ts -------------------------------------------------------------------------------- /src/backend/api/dbdocumentsbypipeline/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/dbdocumentsbypipeline/function.json -------------------------------------------------------------------------------- /src/backend/api/dbdocumentsbypipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/dbdocumentsbypipeline/index.ts -------------------------------------------------------------------------------- /src/backend/api/documents/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/documents/function.json -------------------------------------------------------------------------------- /src/backend/api/documents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/documents/index.ts -------------------------------------------------------------------------------- /src/backend/api/documents/uploadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/documents/uploadBlob.ts -------------------------------------------------------------------------------- /src/backend/api/engine/commonTrigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/engine/commonTrigger.ts -------------------------------------------------------------------------------- /src/backend/api/engine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/engine/index.ts -------------------------------------------------------------------------------- /src/backend/api/engine/serviceCatalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/engine/serviceCatalog.ts -------------------------------------------------------------------------------- /src/backend/api/engine/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/engine/types.ts -------------------------------------------------------------------------------- /src/backend/api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/host.json -------------------------------------------------------------------------------- /src/backend/api/images/web_app_ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/images/web_app_ui3.png -------------------------------------------------------------------------------- /src/backend/api/indexerStatus/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/indexerStatus/function.json -------------------------------------------------------------------------------- /src/backend/api/indexerStatus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/indexerStatus/index.ts -------------------------------------------------------------------------------- /src/backend/api/indexers/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/indexers/function.json -------------------------------------------------------------------------------- /src/backend/api/indexers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/indexers/index.ts -------------------------------------------------------------------------------- /src/backend/api/indexes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/indexes/function.json -------------------------------------------------------------------------------- /src/backend/api/indexes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/indexes/index.ts -------------------------------------------------------------------------------- /src/backend/api/isdeployed/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/isdeployed/function.json -------------------------------------------------------------------------------- /src/backend/api/isdeployed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/isdeployed/index.ts -------------------------------------------------------------------------------- /src/backend/api/openaianswer/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/openaianswer/function.json -------------------------------------------------------------------------------- /src/backend/api/openaianswer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/openaianswer/index.ts -------------------------------------------------------------------------------- /src/backend/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/package-lock.json -------------------------------------------------------------------------------- /src/backend/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/package.json -------------------------------------------------------------------------------- /src/backend/api/price/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/price/function.json -------------------------------------------------------------------------------- /src/backend/api/price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/price/index.ts -------------------------------------------------------------------------------- /src/backend/api/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/queue.ts -------------------------------------------------------------------------------- /src/backend/api/redisstatus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/redisstatus/index.ts -------------------------------------------------------------------------------- /src/backend/api/search/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/search/function.json -------------------------------------------------------------------------------- /src/backend/api/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/search/index.ts -------------------------------------------------------------------------------- /src/backend/api/services/automlner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/automlner.ts -------------------------------------------------------------------------------- /src/backend/api/services/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/blob.ts -------------------------------------------------------------------------------- /src/backend/api/services/changeOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/changeOutput.ts -------------------------------------------------------------------------------- /src/backend/api/services/cogsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/cogsearch.ts -------------------------------------------------------------------------------- /src/backend/api/services/contentModerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/contentModerator.ts -------------------------------------------------------------------------------- /src/backend/api/services/cosmosdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/cosmosdb.ts -------------------------------------------------------------------------------- /src/backend/api/services/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/db.ts -------------------------------------------------------------------------------- /src/backend/api/services/documentTranslation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/documentTranslation.ts -------------------------------------------------------------------------------- /src/backend/api/services/formrec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/formrec.ts -------------------------------------------------------------------------------- /src/backend/api/services/huggingface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/huggingface.ts -------------------------------------------------------------------------------- /src/backend/api/services/jsonToText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/jsonToText.ts -------------------------------------------------------------------------------- /src/backend/api/services/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/language.ts -------------------------------------------------------------------------------- /src/backend/api/services/messageQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/messageQueue.ts -------------------------------------------------------------------------------- /src/backend/api/services/ocr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/ocr.ts -------------------------------------------------------------------------------- /src/backend/api/services/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/openai.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-businessCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-businessCard.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-document.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-healthInsuranceCard.us.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-healthInsuranceCard.us.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-idDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-idDocument.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-invoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-invoice.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-layout.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-read.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-receipt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-receipt.ts -------------------------------------------------------------------------------- /src/backend/api/services/prebuilt/prebuilt-tax.us.w2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/prebuilt/prebuilt-tax.us.w2.ts -------------------------------------------------------------------------------- /src/backend/api/services/preprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/preprocess.ts -------------------------------------------------------------------------------- /src/backend/api/services/redactPdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/redactPdf.ts -------------------------------------------------------------------------------- /src/backend/api/services/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/redis.ts -------------------------------------------------------------------------------- /src/backend/api/services/speech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/speech.ts -------------------------------------------------------------------------------- /src/backend/api/services/spliceDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/spliceDocument.ts -------------------------------------------------------------------------------- /src/backend/api/services/splitPdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/splitPdf.ts -------------------------------------------------------------------------------- /src/backend/api/services/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/storage.ts -------------------------------------------------------------------------------- /src/backend/api/services/tableParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/tableParser.ts -------------------------------------------------------------------------------- /src/backend/api/services/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/test.ts -------------------------------------------------------------------------------- /src/backend/api/services/textSegmentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/textSegmentation.ts -------------------------------------------------------------------------------- /src/backend/api/services/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/translate.ts -------------------------------------------------------------------------------- /src/backend/api/services/videoIndexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/videoIndexer.ts -------------------------------------------------------------------------------- /src/backend/api/services/vision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/vision.ts -------------------------------------------------------------------------------- /src/backend/api/services/xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/services/xml.ts -------------------------------------------------------------------------------- /src/backend/api/splitdocuments/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/splitdocuments/function.json -------------------------------------------------------------------------------- /src/backend/api/splitdocuments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/splitdocuments/index.ts -------------------------------------------------------------------------------- /src/backend/api/splitdocuments/uploadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/splitdocuments/uploadBlob.ts -------------------------------------------------------------------------------- /src/backend/api/status/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/status/function.json -------------------------------------------------------------------------------- /src/backend/api/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/status/index.ts -------------------------------------------------------------------------------- /src/backend/api/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/storage.ts -------------------------------------------------------------------------------- /src/backend/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/tsconfig.json -------------------------------------------------------------------------------- /src/backend/api/vectorSearch/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/vectorSearch/function.json -------------------------------------------------------------------------------- /src/backend/api/vectorSearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/vectorSearch/index.ts -------------------------------------------------------------------------------- /src/backend/api/viewpdf/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/viewpdf/function.json -------------------------------------------------------------------------------- /src/backend/api/viewpdf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/api/viewpdf/index.ts -------------------------------------------------------------------------------- /src/backend/huggingface/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test 5 | .venv -------------------------------------------------------------------------------- /src/backend/huggingface/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/.gitignore -------------------------------------------------------------------------------- /src/backend/huggingface/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/.vscode/extensions.json -------------------------------------------------------------------------------- /src/backend/huggingface/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/.vscode/launch.json -------------------------------------------------------------------------------- /src/backend/huggingface/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/.vscode/settings.json -------------------------------------------------------------------------------- /src/backend/huggingface/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/.vscode/tasks.json -------------------------------------------------------------------------------- /src/backend/huggingface/HuggingFace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/HuggingFace.py -------------------------------------------------------------------------------- /src/backend/huggingface/Preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/Preprocess.py -------------------------------------------------------------------------------- /src/backend/huggingface/analyze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/analyze/__init__.py -------------------------------------------------------------------------------- /src/backend/huggingface/analyze/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/analyze/function.json -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/agents/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/agents/custom.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/approach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/approach.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/chains/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/chains/custom.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/chataggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/chataggregate.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/chatreadretrieveread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/chatreadretrieveread.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/custom.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/readdecomposeask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/readdecomposeask.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/readretrieveread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/readretrieveread.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/retrievers/cogsearchfacetsretriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/retrievers/cogsearchfacetsretriever.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/retrievers/cogsearchretriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/retrievers/cogsearchretriever.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/retrievers/vectorretriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/retrievers/vectorretriever.py -------------------------------------------------------------------------------- /src/backend/huggingface/approaches/retrievethenread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/approaches/retrievethenread.py -------------------------------------------------------------------------------- /src/backend/huggingface/chat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/chat/__init__.py -------------------------------------------------------------------------------- /src/backend/huggingface/chat/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/chat/function.json -------------------------------------------------------------------------------- /src/backend/huggingface/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/host.json -------------------------------------------------------------------------------- /src/backend/huggingface/langchainadapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/langchainadapters.py -------------------------------------------------------------------------------- /src/backend/huggingface/lookuptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/lookuptool.py -------------------------------------------------------------------------------- /src/backend/huggingface/preprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/preprocess/__init__.py -------------------------------------------------------------------------------- /src/backend/huggingface/preprocess/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/preprocess/function.json -------------------------------------------------------------------------------- /src/backend/huggingface/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/requirements.txt -------------------------------------------------------------------------------- /src/backend/huggingface/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/text.py -------------------------------------------------------------------------------- /src/backend/huggingface/textSegmentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/textSegmentation/__init__.py -------------------------------------------------------------------------------- /src/backend/huggingface/textSegmentation/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/backend/huggingface/textSegmentation/function.json -------------------------------------------------------------------------------- /src/deploy/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/build.bat -------------------------------------------------------------------------------- /src/deploy/helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/.helmignore -------------------------------------------------------------------------------- /src/deploy/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/Chart.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /src/deploy/helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /src/deploy/helm/templates/backend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/backend-deployment.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/backend-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/backend-hpa.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/backend-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/backend-secret.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/backend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/backend-service.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-client-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-client-deployment.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-client-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-client-hpa.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-client-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-client-service.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-server-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-server-deployment.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-server-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-server-hpa.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-server-secret.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/frontend-server-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/frontend-server-service.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/ingress.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/read-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/read-deployment.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/read-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/read-hpa.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/read-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/read-secret.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/read-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/read-service.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/stt-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/stt-deployment.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/stt-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/stt-hpa.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/stt-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/stt-secret.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/stt-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/stt-service.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/sttBatch-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/sttBatch-config.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/sttBatch-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/sttBatch-deployment.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/sttBatch-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/sttBatch-hpa.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/sttBatch-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/sttBatch-secret.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/sttBatch-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/sttBatch-service.yaml -------------------------------------------------------------------------------- /src/deploy/helm/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /src/deploy/helm/values.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/helm/values.example.yaml -------------------------------------------------------------------------------- /src/deploy/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/pv.yaml -------------------------------------------------------------------------------- /src/deploy/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/pvc.yaml -------------------------------------------------------------------------------- /src/deploy/pvc2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/deploy/pvc2.yaml -------------------------------------------------------------------------------- /src/frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules -------------------------------------------------------------------------------- /src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/.gitignore -------------------------------------------------------------------------------- /src/frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /src/frontend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/.vscode/launch.json -------------------------------------------------------------------------------- /src/frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /src/frontend/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/.vscode/tasks.json -------------------------------------------------------------------------------- /src/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/Dockerfile -------------------------------------------------------------------------------- /src/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/README.md -------------------------------------------------------------------------------- /src/frontend/api/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /src/frontend/api/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/.funcignore -------------------------------------------------------------------------------- /src/frontend/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/.gitignore -------------------------------------------------------------------------------- /src/frontend/api/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/.vscode/extensions.json -------------------------------------------------------------------------------- /src/frontend/api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/.vscode/launch.json -------------------------------------------------------------------------------- /src/frontend/api/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/.vscode/settings.json -------------------------------------------------------------------------------- /src/frontend/api/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/.vscode/tasks.json -------------------------------------------------------------------------------- /src/frontend/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/Dockerfile -------------------------------------------------------------------------------- /src/frontend/api/autocomplete/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/autocomplete/function.json -------------------------------------------------------------------------------- /src/frontend/api/autocomplete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/autocomplete/index.ts -------------------------------------------------------------------------------- /src/frontend/api/chat/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/chat/function.json -------------------------------------------------------------------------------- /src/frontend/api/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/chat/index.ts -------------------------------------------------------------------------------- /src/frontend/api/chat/test/agentPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/chat/test/agentPayload.ts -------------------------------------------------------------------------------- /src/frontend/api/chat/test/chainpayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/chat/test/chainpayload.ts -------------------------------------------------------------------------------- /src/frontend/api/chat/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/chat/test/index.ts -------------------------------------------------------------------------------- /src/frontend/api/cogsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/cogsearch.ts -------------------------------------------------------------------------------- /src/frontend/api/cogsearch/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/cogsearch/function.json -------------------------------------------------------------------------------- /src/frontend/api/cogsearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/cogsearch/index.ts -------------------------------------------------------------------------------- /src/frontend/api/cogsearchdocumentcount/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/cogsearchdocumentcount/function.json -------------------------------------------------------------------------------- /src/frontend/api/cogsearchdocumentcount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/cogsearchdocumentcount/index.ts -------------------------------------------------------------------------------- /src/frontend/api/config/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/config/function.json -------------------------------------------------------------------------------- /src/frontend/api/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/config/index.ts -------------------------------------------------------------------------------- /src/frontend/api/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/db.ts -------------------------------------------------------------------------------- /src/frontend/api/dbdocumentsbypipeline/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/dbdocumentsbypipeline/function.json -------------------------------------------------------------------------------- /src/frontend/api/dbdocumentsbypipeline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/dbdocumentsbypipeline/index.ts -------------------------------------------------------------------------------- /src/frontend/api/documents/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/documents/function.json -------------------------------------------------------------------------------- /src/frontend/api/documents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/documents/index.ts -------------------------------------------------------------------------------- /src/frontend/api/documents/uploadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/documents/uploadBlob.ts -------------------------------------------------------------------------------- /src/frontend/api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/host.json -------------------------------------------------------------------------------- /src/frontend/api/indexerStatus/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/indexerStatus/function.json -------------------------------------------------------------------------------- /src/frontend/api/indexerStatus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/indexerStatus/index.ts -------------------------------------------------------------------------------- /src/frontend/api/indexers/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/indexers/function.json -------------------------------------------------------------------------------- /src/frontend/api/indexers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/indexers/index.ts -------------------------------------------------------------------------------- /src/frontend/api/indexes/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/indexes/function.json -------------------------------------------------------------------------------- /src/frontend/api/indexes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/indexes/index.ts -------------------------------------------------------------------------------- /src/frontend/api/isdeployed/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/isdeployed/function.json -------------------------------------------------------------------------------- /src/frontend/api/isdeployed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/isdeployed/index.ts -------------------------------------------------------------------------------- /src/frontend/api/langchainlibs/chains/cogSearchRetrievalQA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/langchainlibs/chains/cogSearchRetrievalQA.ts -------------------------------------------------------------------------------- /src/frontend/api/langchainlibs/retrievers/cogsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/langchainlibs/retrievers/cogsearch.ts -------------------------------------------------------------------------------- /src/frontend/api/langchainlibs/tools/cogsearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/langchainlibs/tools/cogsearch.ts -------------------------------------------------------------------------------- /src/frontend/api/local.settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/local.settings.example.json -------------------------------------------------------------------------------- /src/frontend/api/openaianswer/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/openaianswer/function.json -------------------------------------------------------------------------------- /src/frontend/api/openaianswer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/openaianswer/index.ts -------------------------------------------------------------------------------- /src/frontend/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/package-lock.json -------------------------------------------------------------------------------- /src/frontend/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/package.json -------------------------------------------------------------------------------- /src/frontend/api/price/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/price/function.json -------------------------------------------------------------------------------- /src/frontend/api/price/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/price/index.ts -------------------------------------------------------------------------------- /src/frontend/api/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/queue.ts -------------------------------------------------------------------------------- /src/frontend/api/search/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/search/function.json -------------------------------------------------------------------------------- /src/frontend/api/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/search/index.ts -------------------------------------------------------------------------------- /src/frontend/api/splitdocuments/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/splitdocuments/function.json -------------------------------------------------------------------------------- /src/frontend/api/splitdocuments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/splitdocuments/index.ts -------------------------------------------------------------------------------- /src/frontend/api/splitdocuments/uploadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/splitdocuments/uploadBlob.ts -------------------------------------------------------------------------------- /src/frontend/api/status/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/status/function.json -------------------------------------------------------------------------------- /src/frontend/api/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/status/index.ts -------------------------------------------------------------------------------- /src/frontend/api/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/storage.ts -------------------------------------------------------------------------------- /src/frontend/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/tsconfig.json -------------------------------------------------------------------------------- /src/frontend/api/vectorSearch/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/vectorSearch/function.json -------------------------------------------------------------------------------- /src/frontend/api/vectorSearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/vectorSearch/index.ts -------------------------------------------------------------------------------- /src/frontend/api/viewpdf/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/viewpdf/function.json -------------------------------------------------------------------------------- /src/frontend/api/viewpdf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/api/viewpdf/index.ts -------------------------------------------------------------------------------- /src/frontend/images/access_permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/access_permission.png -------------------------------------------------------------------------------- /src/frontend/images/clone_repository_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/clone_repository_status.png -------------------------------------------------------------------------------- /src/frontend/images/cloned_repository.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/cloned_repository.png -------------------------------------------------------------------------------- /src/frontend/images/create_project2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/create_project2.png -------------------------------------------------------------------------------- /src/frontend/images/find_static_web_app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/find_static_web_app2.png -------------------------------------------------------------------------------- /src/frontend/images/model_pipeline_run_part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/model_pipeline_run_part1.png -------------------------------------------------------------------------------- /src/frontend/images/model_pipeline_run_part1_detailed_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/model_pipeline_run_part1_detailed_log.png -------------------------------------------------------------------------------- /src/frontend/images/obo-la-architecture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/obo-la-architecture2.png -------------------------------------------------------------------------------- /src/frontend/images/project_settings2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/project_settings2.png -------------------------------------------------------------------------------- /src/frontend/images/sample_architecture3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/sample_architecture3.jpg -------------------------------------------------------------------------------- /src/frontend/images/sample_architecture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/sample_architecture3.png -------------------------------------------------------------------------------- /src/frontend/images/web_app_blank2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/web_app_blank2.png -------------------------------------------------------------------------------- /src/frontend/images/web_app_file_upload_successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/web_app_file_upload_successful.png -------------------------------------------------------------------------------- /src/frontend/images/web_app_ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/images/web_app_ui3.png -------------------------------------------------------------------------------- /src/frontend/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/nginx/nginx.conf -------------------------------------------------------------------------------- /src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/package.json -------------------------------------------------------------------------------- /src/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/public/favicon.ico -------------------------------------------------------------------------------- /src/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/public/index.html -------------------------------------------------------------------------------- /src/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/public/logo192.png -------------------------------------------------------------------------------- /src/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/public/logo512.png -------------------------------------------------------------------------------- /src/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/public/manifest.json -------------------------------------------------------------------------------- /src/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/public/robots.txt -------------------------------------------------------------------------------- /src/frontend/repoDescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/repoDescription.json -------------------------------------------------------------------------------- /src/frontend/repoDescription2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/repoDescription2.json -------------------------------------------------------------------------------- /src/frontend/src/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/App/App.jsx -------------------------------------------------------------------------------- /src/frontend/src/App/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/App/Footer.jsx -------------------------------------------------------------------------------- /src/frontend/src/App/HeaderComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/App/HeaderComponent.jsx -------------------------------------------------------------------------------- /src/frontend/src/App/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/App/Home.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/AnalyzeImageDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/AnalyzeImageDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/ChangeDataDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/ChangeDataDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/CopyDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/CopyDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/DocumentTranslationDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/DocumentTranslationDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/FormRecCustomDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/FormRecCustomDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/HuggingFaceDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/HuggingFaceDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/JSONToTextDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/JSONToTextDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/LanguageCustomNerDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/LanguageCustomNerDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/LanguageDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/LanguageDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/LanguageMultiClassifyDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/LanguageMultiClassifyDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/LanguageSingleClassifyDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/LanguageSingleClassifyDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/OpenAiGenericDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/OpenAiGenericDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/OpenAiRestDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/OpenAiRestDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/SpliceDocument.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/SpliceDocument.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/TableToText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/TableToText.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/ToTxtDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/ToTxtDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/ToTxtDialogByPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/ToTxtDialogByPage.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Dialogs/VideoIndexerDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Dialogs/VideoIndexerDialog.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Language/LanguageDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Language/LanguageDropdown.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/OptionCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/OptionCard.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Prices/Prices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Prices/Prices.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/Prices/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/Prices/price.js -------------------------------------------------------------------------------- /src/frontend/src/Components/SelectPipeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/SelectPipeline.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/SpeechToText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/SpeechToText.jsx -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/App/App.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/App/App.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/axios.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/AppFooter/AppFooter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/AppFooter/AppFooter.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/AppFooter/AppFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/AppFooter/AppFooter.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/AppHeader/AppHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/AppHeader/AppHeader.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/AppHeader/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/AppHeader/AppHeader.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/AppHeaderAuth/AppHeaderAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/AppHeaderAuth/AppHeaderAuth.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Facets/CheckboxFacet/CheckboxFacet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Facets/CheckboxFacet/CheckboxFacet.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Facets/CheckboxFacet/CheckboxFacet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Facets/CheckboxFacet/CheckboxFacet.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Facets/Facets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Facets/Facets.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Facets/Facets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Facets/Facets.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Pager/Pager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Pager/Pager.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Pager/Pager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Pager/Pager.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Results/Result/Result.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Results/Result/Result.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Results/Result/Result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Results/Result/Result.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Results/Results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Results/Results.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Results/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Results/Results.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Results/TableResult/TableResult.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Results/TableResult/TableResult.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/Results/TableResult/TableResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/Results/TableResult/TableResult.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/SearchBar/SearchBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/SearchBar/SearchBar.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/SearchBar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/SearchBar/SearchBar.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/SearchBar/Suggestions/Suggestions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/SearchBar/Suggestions/Suggestions.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/components/SearchBar/Suggestions/Suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/components/SearchBar/Suggestions/Suggestions.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/contexts/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/contexts/AuthContext.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/images/basic-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/images/basic-arch.png -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/images/config.png -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/images/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/images/setup.png -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/images/static-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/images/static-web.png -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/images/use-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/images/use-template.png -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/images/web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/images/web-app.png -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/index.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/pages/Details/Details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/pages/Details/Details.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/pages/Details/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/pages/Details/Details.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/pages/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/pages/Home/Home.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/pages/Home/Home.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/pages/Search/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/pages/Search/Search.css -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/pages/Search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/pages/Search/Search.js -------------------------------------------------------------------------------- /src/frontend/src/Components/searchComponents/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/searchComponents/setupTests.js -------------------------------------------------------------------------------- /src/frontend/src/Components/serviceCatalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Components/serviceCatalog.js -------------------------------------------------------------------------------- /src/frontend/src/Pages/CogSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/CogSearch.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/Content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/Content.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/CurrentPipeline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/CurrentPipeline.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/OpenAiViewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/OpenAiViewer.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/PipelinePreview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/PipelinePreview.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/Stages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/Stages.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/Upload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/Upload.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/VectorSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/VectorSearch.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/ViewInsights.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/ViewInsights.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/Chat.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/Chat.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/Chat.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/api/api.js -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/api/index.js -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/api/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/api/models.js -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/AnalysisPanel/AnalysisPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/AnalysisPanel/AnalysisPanel.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/AnalysisPanel/AnalysisPanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/AnalysisPanel/AnalysisPanel.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/AnalysisPanel/AnalysisPanelTabs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/AnalysisPanel/AnalysisPanelTabs.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/AnalysisPanel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/AnalysisPanel/index.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/Answer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/Answer.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/Answer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/Answer.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/AnswerError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/AnswerError.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/AnswerIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/AnswerIcon.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/AnswerLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/AnswerLoading.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/AnswerParser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/AnswerParser.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Answer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Answer/index.js -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/ClearChatButton/ClearChatButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/ClearChatButton/ClearChatButton.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/ClearChatButton/ClearChatButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/ClearChatButton/ClearChatButton.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/ClearChatButton/index.jsx: -------------------------------------------------------------------------------- 1 | export * from "./ClearChatButton"; 2 | -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Example/Example.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Example/Example.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Example/Example.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Example/Example.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Example/ExampleList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Example/ExampleList.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/Example/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/Example/index.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/QuestionInput/QuestionInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/QuestionInput/QuestionInput.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/QuestionInput/QuestionInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/QuestionInput/QuestionInput.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/QuestionInput/index.js: -------------------------------------------------------------------------------- 1 | export * from "./QuestionInput"; 2 | -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SettingsButton/SettingsButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/SettingsButton/SettingsButton.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SettingsButton/SettingsButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/SettingsButton/SettingsButton.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SettingsButton/index.jsx: -------------------------------------------------------------------------------- 1 | export * from "./SettingsButton"; 2 | -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SupportingContent/SupportingContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/SupportingContent/SupportingContent.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SupportingContent/SupportingContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/SupportingContent/SupportingContent.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SupportingContent/SupportingContentParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/SupportingContent/SupportingContentParser.js -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/SupportingContent/index.js: -------------------------------------------------------------------------------- 1 | export * from "./SupportingContent"; 2 | -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/UserChatMessage/UserChatMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/UserChatMessage/UserChatMessage.jsx -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/UserChatMessage/UserChatMessage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/Pages/chat/components/UserChatMessage/UserChatMessage.module.css -------------------------------------------------------------------------------- /src/frontend/src/Pages/chat/components/UserChatMessage/index.js: -------------------------------------------------------------------------------- 1 | export * from "./UserChatMessage"; 2 | -------------------------------------------------------------------------------- /src/frontend/src/images/260153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/260153.png -------------------------------------------------------------------------------- /src/frontend/src/images/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/android.svg -------------------------------------------------------------------------------- /src/frontend/src/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/arrow.png -------------------------------------------------------------------------------- /src/frontend/src/images/businesscard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/businesscard.svg -------------------------------------------------------------------------------- /src/frontend/src/images/customClassificationLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/customClassificationLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/customEntityExtractionLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/customEntityExtractionLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/customform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/customform.svg -------------------------------------------------------------------------------- /src/frontend/src/images/detectLanguageDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/detectLanguageDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/generaldoc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/generaldoc.svg -------------------------------------------------------------------------------- /src/frontend/src/images/idcard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/idcard.svg -------------------------------------------------------------------------------- /src/frontend/src/images/imagetbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/imagetbd.png -------------------------------------------------------------------------------- /src/frontend/src/images/invoice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/invoice.svg -------------------------------------------------------------------------------- /src/frontend/src/images/keyPhrasesDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/keyPhrasesDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/layoutLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/layoutLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/linkedEntitiesDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/linkedEntitiesDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/nerDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/nerDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/ocrLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/ocrLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/openai.svg -------------------------------------------------------------------------------- /src/frontend/src/images/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/pdf.svg -------------------------------------------------------------------------------- /src/frontend/src/images/pdfpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/pdfpng.png -------------------------------------------------------------------------------- /src/frontend/src/images/piiDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/piiDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/receiptcard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/receiptcard.svg -------------------------------------------------------------------------------- /src/frontend/src/images/sentimentDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/sentimentDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/storage.svg -------------------------------------------------------------------------------- /src/frontend/src/images/summarizationDemoLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/summarizationDemoLogo.svg -------------------------------------------------------------------------------- /src/frontend/src/images/taxw2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/taxw2.svg -------------------------------------------------------------------------------- /src/frontend/src/images/textToSpeech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/textToSpeech.svg -------------------------------------------------------------------------------- /src/frontend/src/images/wav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/images/wav.svg -------------------------------------------------------------------------------- /src/frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/index.js -------------------------------------------------------------------------------- /src/frontend/src/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/styles/Home.module.css -------------------------------------------------------------------------------- /src/frontend/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/styles/globals.css -------------------------------------------------------------------------------- /src/frontend/src/styles/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/frontend/src/styles/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/styles/logo.svg -------------------------------------------------------------------------------- /src/frontend/src/styles/update.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/src/styles/update.css -------------------------------------------------------------------------------- /src/frontend/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/staticwebapp.config.json -------------------------------------------------------------------------------- /src/frontend/swa-cli.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/swa-cli.config.json -------------------------------------------------------------------------------- /src/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/src/frontend/yarn.lock -------------------------------------------------------------------------------- /templates/.gitignore: -------------------------------------------------------------------------------- 1 | parameters.json -------------------------------------------------------------------------------- /templates/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/deploy.yml -------------------------------------------------------------------------------- /templates/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/main.json -------------------------------------------------------------------------------- /templates/oneclick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/oneclick.json -------------------------------------------------------------------------------- /templates/oneclickoai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/oneclickoai.json -------------------------------------------------------------------------------- /templates/oneclickoairedis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/oneclickoairedis.json -------------------------------------------------------------------------------- /templates/parameters.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/parameters.json.example -------------------------------------------------------------------------------- /templates/privatedeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/templates/privatedeploy.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/business-process-automation/HEAD/yarn.lock --------------------------------------------------------------------------------