├── .devcontainer ├── Dockerfile ├── devcontainer.json └── scripts │ ├── azure-cli.sh │ ├── docker-client.sh │ ├── nodejs.sh │ └── non-root-user.sh ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE.md ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── app ├── backend │ ├── app.py │ ├── approaches │ │ ├── __init__.py │ │ ├── approach.py │ │ ├── chatreadretrieveread.py │ │ ├── chatwebretrieveread.py │ │ ├── comparewebwithwork.py │ │ ├── compareworkwithweb.py │ │ ├── gpt_direct_approach.py │ │ ├── mathassistant.py │ │ └── tabulardataassistant.py │ ├── core │ │ ├── messagebuilder.py │ │ └── modelhelper.py │ ├── pyvenv.cfg │ ├── requirements.txt │ ├── test_data │ │ └── parts_inventory.csv │ ├── testsuite.py │ └── text.py ├── enrichment │ ├── app.py │ ├── data_model.py │ ├── model_handling.py │ ├── pyvenv.cfg │ └── requirements.txt └── frontend │ ├── .prettierrc.json │ ├── index.html │ ├── package.json │ ├── public │ └── favicon.ico │ ├── src │ ├── api │ │ ├── api.ts │ │ ├── index.ts │ │ └── models.ts │ ├── assets │ │ ├── github.svg │ │ ├── openai.svg │ │ └── search.svg │ ├── components │ │ ├── AnalysisPanel │ │ │ ├── AnalysisPanel.module.css │ │ │ ├── AnalysisPanel.tsx │ │ │ ├── AnalysisPanelTabs.tsx │ │ │ └── index.tsx │ │ ├── Answer │ │ │ ├── Answer.module.css │ │ │ ├── Answer.tsx │ │ │ ├── AnswerError.tsx │ │ │ ├── AnswerIcon.tsx │ │ │ ├── AnswerLoading.tsx │ │ │ ├── AnswerParser.tsx │ │ │ └── index.ts │ │ ├── ApproachesButtonGroup │ │ │ ├── ApproachesButtonGroup.module.css │ │ │ ├── ApproachesButtonGroup.tsx │ │ │ └── index.tsx │ │ ├── CharacterStreamer │ │ │ └── CharacterStreamer.tsx │ │ ├── ChatModeButtonGroup │ │ │ ├── ChatModeButtonGroup.module.css │ │ │ ├── ChatModeButtonGroup.tsx │ │ │ └── index.tsx │ │ ├── ClearChatButton │ │ │ ├── ClearChatButton.module.css │ │ │ ├── ClearChatButton.tsx │ │ │ └── index.tsx │ │ ├── Example │ │ │ ├── Example.module.css │ │ │ ├── Example.tsx │ │ │ ├── ExampleList.tsx │ │ │ └── index.tsx │ │ ├── FileStatus │ │ │ ├── DocumentsDetailList.module.css │ │ │ ├── DocumentsDetailList.tsx │ │ │ ├── FileStatus.module.css │ │ │ ├── FileStatus.tsx │ │ │ └── index.tsx │ │ ├── FolderPicker │ │ │ ├── FolderPicker.module.css │ │ │ ├── FolderPicker.tsx │ │ │ └── index.tsx │ │ ├── InfoButton │ │ │ ├── InfoButton.module.css │ │ │ ├── InfoButton.tsx │ │ │ └── index.tsx │ │ ├── InfoContent │ │ │ ├── InfoContent.tsx │ │ │ └── index.ts │ │ ├── QuestionInput │ │ │ ├── QuestionInput.module.css │ │ │ ├── QuestionInput.tsx │ │ │ └── index.ts │ │ ├── RAIPanel │ │ │ ├── RAIPanel.module.css │ │ │ ├── RAIPanel.tsx │ │ │ └── index.tsx │ │ ├── ResponseLengthButtonGroup │ │ │ ├── ResponseLengthButtonGroup.module.css │ │ │ ├── ResponseLengthButtonGroup.tsx │ │ │ └── index.tsx │ │ ├── ResponseTempButtonGroup │ │ │ ├── ResponseTempButtonGroup.module.css │ │ │ ├── ResponseTempButtonGroup.tsx │ │ │ └── index.tsx │ │ ├── SettingsButton │ │ │ ├── SettingsButton.module.css │ │ │ ├── SettingsButton.tsx │ │ │ └── index.tsx │ │ ├── StatusContent │ │ │ └── StatusContent.tsx │ │ ├── SupportingContent │ │ │ ├── SupportingContent.module.css │ │ │ ├── SupportingContent.tsx │ │ │ ├── SupportingContentParser.ts │ │ │ └── index.ts │ │ ├── TagPicker │ │ │ ├── TagPicker.module.css │ │ │ ├── TagPicker.tsx │ │ │ └── index.tsx │ │ ├── Title │ │ │ └── Title.tsx │ │ ├── UserChatMessage │ │ │ ├── UserChatMessage.module.css │ │ │ ├── UserChatMessage.tsx │ │ │ └── index.ts │ │ ├── WarningBanner │ │ │ ├── WarningBanner.module.css │ │ │ ├── WarningBanner.tsx │ │ │ └── index.ts │ │ └── filepicker │ │ │ ├── check.tsx │ │ │ ├── clear.tsx │ │ │ ├── drop-zone.module.css │ │ │ ├── drop-zone.tsx │ │ │ ├── file-picker.module.css │ │ │ ├── file-picker.tsx │ │ │ ├── files-list.module.css │ │ │ └── files-list.tsx │ ├── index.css │ ├── index.tsx │ ├── pages │ │ ├── NoPage.tsx │ │ ├── chat │ │ │ ├── Chat.module.css │ │ │ └── Chat.tsx │ │ ├── content │ │ │ ├── Content.module.css │ │ │ └── Content.tsx │ │ ├── layout │ │ │ ├── Layout.module.css │ │ │ └── Layout.tsx │ │ ├── tda │ │ │ ├── Tda.module.css │ │ │ ├── Tda.tsx │ │ │ ├── check.tsx │ │ │ ├── clear.tsx │ │ │ ├── drop-zone.module.css │ │ │ ├── drop-zone.tsx │ │ │ ├── file-picker.module.css │ │ │ ├── files-list.module.css │ │ │ └── files-list.tsx │ │ └── tutor │ │ │ ├── Tutor.module.css │ │ │ └── Tutor.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── version.json │ └── vite.config.ts ├── azure_search └── create_vector_index.json ├── container_images ├── enrichment_container_image │ ├── Dockerfile │ └── docker-build.sh └── webapp_container_image │ ├── Dockerfile │ └── docker-build.sh ├── docs ├── CODEOWNERS ├── Information Assistant - Architecture Document v1.0.pdf ├── container_webapp_debug.md ├── costestimator.md ├── deployment │ ├── accepting_responsible_ai_notice.md │ ├── accepting_responsible_ai_notice_multi_service.md │ ├── autoscale_sku.md │ ├── client_credentials_flow.md │ ├── configure_local_dev_environment.md │ ├── considerations_production.md │ ├── deployment.md │ ├── developing_in_a_GitHub_Codespaces.md │ ├── enable_sovereign_deployment.md │ ├── image.png │ ├── manual_app_registration.md │ ├── migrate.md │ ├── move_or_migrate.md │ ├── setting_up_sandbox_environment.md │ ├── statusdb_cosmos.md │ ├── troubleshooting.md │ ├── upgrade.md │ ├── using_ia_first_time.md │ └── workbook_usage.md ├── features │ ├── architectural_decisions.md │ ├── bing_search.md │ ├── cognitive_search.md │ ├── configuring_language_env_files.md │ ├── document_pre_processing.md │ ├── enable_customer_usage_attribution.md │ ├── features.md │ ├── optional_features.md │ ├── sharepoint.md │ ├── user_experience.md │ └── ux_analysispanel.md ├── function_debug.md ├── images │ ├── UX_analysispanel_supportingcontent.png │ ├── UX_analysispanel_thoughtprocess.png │ ├── UX_anlysispanel_citation_document.png │ ├── UX_anlysispanel_citation_documentsection.png │ ├── VectorSearch.png │ ├── adjust-settings-ui.png │ ├── app_registration.png │ ├── appcomponents.png │ ├── ask-a-question-interface.jpg │ ├── authentication_identity_provider_identification.jpg │ ├── authentication_managed_application.jpg │ ├── chat-interface.png │ ├── codespace_creation.png │ ├── codespaces_building_container.png │ ├── codespaces_open_in_vs_code_desktop.png │ ├── configure-answer-generation.png │ ├── cosmos_account.png │ ├── credential-lifespan.png │ ├── custom_language_file.png │ ├── data_explorer.png │ ├── deployment_app_service_location.jpg │ ├── deployment_default_domain.jpg │ ├── developing_in_a_codespaces_image_1.png │ ├── developing_in_a_codespaces_image_2.png │ ├── developing_in_a_codespaces_open_in_vscode_2.png │ ├── developing_in_a_codespaces_open_in_vscode_3.png │ ├── developing_in_a_codespaces_open_in_vscode_4.png │ ├── fastapi_debug.png │ ├── fork_repo.png │ ├── frontend-watch.png │ ├── function_attach.png │ ├── function_running.png │ ├── generative-ungrounded-ui.png │ ├── info-assist-chat-ui.png │ ├── info_assistant_chatscreen.png │ ├── known_Issues_web_app_authentication.png │ ├── manage-content-delete.png │ ├── manage-content-interface.png │ ├── manage-content-ui.png │ ├── manage-content-upload-files-1.png │ ├── manage-content-upload-files.png │ ├── manage-content-upload-status.png │ ├── math-assistant-give-me-clues.png │ ├── math-assistant-show-me-how-to-solve.png │ ├── math-assistant-show-me-the-answer.png │ ├── math-assistant-ui.png │ ├── python_version.png │ ├── sandbox_environment_build_pipeline_configuration.png │ ├── secure-deploy-detail-architecture.drawio │ ├── secure-deploy-detail-architecture.png │ ├── secure-deploy-frontend-architecture.drawio │ ├── secure-deploy-frontend-architecture.png │ ├── secure-deploy-function-architecture.drawio │ ├── secure-deploy-function-architecture.png │ ├── secure-deploy-high-level-architecture.drawio │ ├── secure-deploy-high-level-architecture.png │ ├── secure-deploy-network-architecture.png │ ├── sharepoint-preview-designer-known-issue.png │ ├── sharepoint_logic_app_diagram.png │ ├── tab-data-assist-how-many-rows.png │ ├── tab-data-assist-how-many.png │ ├── tab-data-assist-upload-files-ui.png │ ├── upload-files-drag-drop.jpg │ ├── upload-files-link.png │ ├── upload-status-delete.png │ ├── view-upload-status-link.png │ ├── view-upload-status-options-and-refresh.png │ ├── virtual_env.jpg │ ├── vite-debug.png │ ├── vscode_reopen_in_container.png │ ├── vscode_starting_dev_container.png │ ├── vscode_terminal_windows.png │ ├── webapp-backend.png │ ├── webapp_debug_1.png │ ├── webapp_debug_2.png │ ├── webapp_debug_3.png │ ├── work-plus-web-compare-with-web.png │ ├── work-plus-web-compare-with-work.png │ ├── work-plus-web-search-web.png │ └── work-plus-web-ui.png ├── knownissues.md ├── process_flow_agent.drawio.png ├── process_flow_agent.png ├── process_flow_chat.drawio.png ├── process_flow_chat.png ├── secure_deployment │ ├── secure_costestimator.md │ └── secure_deployment.md ├── status_log.md ├── transparency.md ├── webapp_debug.md └── work-plus-web-search-web.png ├── functions ├── .dockerignore ├── .funcignore ├── .gitignore ├── Dockerfile ├── FileDeletion │ ├── __init__.py │ └── function.json ├── FileFormRecPollingPDF │ ├── __init__.py │ └── function.json ├── FileFormRecSubmissionPDF │ ├── __init__.py │ └── function.json ├── FileLayoutParsingOther │ ├── __init__.py │ └── function.json ├── FileUploadedFunc │ ├── __init__.py │ └── function.json ├── ImageEnrichment │ ├── __init__.py │ ├── function.json │ └── readme.md ├── TextEnrichment │ ├── __init__.py │ └── function.json ├── docker-build.sh ├── host.json ├── requirements.txt └── shared_code │ ├── __init__.py │ ├── status_log.py │ ├── utilities.py │ └── utilities_helper.py ├── infra ├── README.md ├── arm_templates │ ├── bing_search │ │ └── bing.template.json │ ├── kv_secret │ │ └── kv_secret.template.json │ ├── network │ │ ├── vnet.template.json │ │ └── vnet_w_ddos.template.json │ ├── storage_container │ │ └── container.template.json │ └── storage_queue │ │ └── queue.template.json ├── azure_roles.json ├── backend.tf.ci ├── backend.tf.us.ci ├── core │ ├── aad │ │ ├── entra.tf │ │ └── variables.tf │ ├── ai │ │ ├── bingSearch │ │ │ ├── bingSearch.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── cogServices │ │ │ ├── cogServices.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── docintelligence │ │ │ ├── docintelligence.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── openaiservices │ │ │ ├── openaiservices.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── container_registry │ │ ├── container_registry.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── db │ │ ├── cosmosdb.tf │ │ ├── outputs.tf │ │ └── variables.tf │ ├── host │ │ ├── enrichmentapp │ │ │ ├── enrichmentapp.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── functions │ │ │ ├── functions.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── webapp │ │ │ ├── outputs.tf │ │ │ ├── variables.tf │ │ │ └── webapp.tf │ ├── logging │ │ ├── loganalytics │ │ │ ├── logging.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── monitor │ │ │ ├── monitor.tf │ │ │ └── variables.tf │ ├── network │ │ ├── network │ │ │ ├── network.tf │ │ │ ├── output.tf │ │ │ └── variables.tf │ │ └── privateDNS │ │ │ ├── outputs.tf │ │ │ ├── privateDNS.tf │ │ │ └── variables.tf │ ├── search │ │ ├── outputs.tf │ │ ├── search-services.tf │ │ └── variables.tf │ ├── security │ │ ├── keyvault │ │ │ ├── keyvault.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ ├── keyvaultSecret │ │ │ ├── keyvaultSecret.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── role │ │ │ ├── role.tf │ │ │ └── variables.tf │ ├── sharepoint │ │ ├── sharepoint.tf │ │ └── variables.tf │ └── storage │ │ ├── outputs.tf │ │ ├── storage-account.tf │ │ └── variables.tf ├── logic_apps │ └── logicapp_SharePointFileIngestion_template.json ├── main.tf ├── outputs.tf ├── providers.tf └── variables.tf ├── openvpn └── info.txt ├── package.json ├── pipelines ├── README.md ├── azdo-gov.yml ├── azdo.yml ├── demo.yml ├── devcontainer-ci.env ├── pr-gov.yml ├── pr.yml ├── templates │ ├── deploy-template.yml │ ├── destroy-template.yml │ ├── make-command.yml │ └── testing-template.yml ├── vNext-gov.yml └── vNext.yml ├── scripts ├── build.sh ├── check-secure-mode-connectivity.sh ├── check-subscription.sh ├── configuration-create.sh ├── deploy-enrichment-webapp.sh ├── deploy-functions.sh ├── deploy-search-indexes.sh ├── deploy-webapp.sh ├── environments │ ├── AzureEnvironments │ │ ├── AzureCloud.env │ │ └── AzureUSGovernment.env │ ├── languages │ │ ├── el.env │ │ ├── en-US.env │ │ ├── es.env │ │ ├── language.env.example │ │ └── pt-Br.env │ ├── local.env.example │ ├── shared-ia-dev.env │ ├── shared-ia.env │ ├── tmp-ia.env │ └── usgov-ia.env ├── extract-content.py ├── extract-dependencies.py ├── functional-tests.sh ├── inf-cleanup.sh ├── inf-create.sh ├── inf-destroy.sh ├── inf-import-state.sh ├── inf-inject-dependencies.py ├── inf-manual-destroy.sh ├── json-to-env.function.debug.sh ├── json-to-env.sh ├── json-to-env.webapp.debug.sh ├── load-env.sh ├── merge-databases.py ├── prep-env.sh ├── prep-migration-env.sh ├── prepare-tf-variables.sh ├── push-to-acr.sh ├── terraform-format.sh ├── terraform-init.sh ├── terraform-plan-apply.sh ├── terraform-remote-backend.sh ├── tf-dependencies.json ├── time-sync.sh └── upgrade_repoint.config.json.example └── tests ├── README.md ├── debug_tests.py ├── requirements.txt ├── run_api_tests.py ├── run_tests.py └── test_data ├── test_example.csv ├── test_example.docx ├── test_example.html ├── test_example.md ├── test_example.pdf ├── test_example.pptx ├── test_example.txt ├── test_example.xlsx └── test_example.xml /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/scripts/azure-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.devcontainer/scripts/azure-cli.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/docker-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.devcontainer/scripts/docker-client.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.devcontainer/scripts/nodejs.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/non-root-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.devcontainer/scripts/non-root-user.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /app/backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/app.py -------------------------------------------------------------------------------- /app/backend/approaches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/__init__.py -------------------------------------------------------------------------------- /app/backend/approaches/approach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/approach.py -------------------------------------------------------------------------------- /app/backend/approaches/chatreadretrieveread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/chatreadretrieveread.py -------------------------------------------------------------------------------- /app/backend/approaches/chatwebretrieveread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/chatwebretrieveread.py -------------------------------------------------------------------------------- /app/backend/approaches/comparewebwithwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/comparewebwithwork.py -------------------------------------------------------------------------------- /app/backend/approaches/compareworkwithweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/compareworkwithweb.py -------------------------------------------------------------------------------- /app/backend/approaches/gpt_direct_approach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/gpt_direct_approach.py -------------------------------------------------------------------------------- /app/backend/approaches/mathassistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/mathassistant.py -------------------------------------------------------------------------------- /app/backend/approaches/tabulardataassistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/approaches/tabulardataassistant.py -------------------------------------------------------------------------------- /app/backend/core/messagebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/core/messagebuilder.py -------------------------------------------------------------------------------- /app/backend/core/modelhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/core/modelhelper.py -------------------------------------------------------------------------------- /app/backend/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/pyvenv.cfg -------------------------------------------------------------------------------- /app/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/requirements.txt -------------------------------------------------------------------------------- /app/backend/test_data/parts_inventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/test_data/parts_inventory.csv -------------------------------------------------------------------------------- /app/backend/testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/testsuite.py -------------------------------------------------------------------------------- /app/backend/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/backend/text.py -------------------------------------------------------------------------------- /app/enrichment/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/enrichment/app.py -------------------------------------------------------------------------------- /app/enrichment/data_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/enrichment/data_model.py -------------------------------------------------------------------------------- /app/enrichment/model_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/enrichment/model_handling.py -------------------------------------------------------------------------------- /app/enrichment/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/enrichment/pyvenv.cfg -------------------------------------------------------------------------------- /app/enrichment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/enrichment/requirements.txt -------------------------------------------------------------------------------- /app/frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/.prettierrc.json -------------------------------------------------------------------------------- /app/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/index.html -------------------------------------------------------------------------------- /app/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/package.json -------------------------------------------------------------------------------- /app/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/public/favicon.ico -------------------------------------------------------------------------------- /app/frontend/src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/api/api.ts -------------------------------------------------------------------------------- /app/frontend/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/api/index.ts -------------------------------------------------------------------------------- /app/frontend/src/api/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/api/models.ts -------------------------------------------------------------------------------- /app/frontend/src/assets/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/assets/github.svg -------------------------------------------------------------------------------- /app/frontend/src/assets/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/assets/openai.svg -------------------------------------------------------------------------------- /app/frontend/src/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/assets/search.svg -------------------------------------------------------------------------------- /app/frontend/src/components/AnalysisPanel/AnalysisPanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/AnalysisPanel/AnalysisPanel.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/AnalysisPanel/AnalysisPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/AnalysisPanel/AnalysisPanel.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/AnalysisPanel/AnalysisPanelTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/AnalysisPanel/AnalysisPanelTabs.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/AnalysisPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/AnalysisPanel/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/Answer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/Answer.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/Answer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/Answer.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/AnswerError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/AnswerError.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/AnswerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/AnswerIcon.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/AnswerLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/AnswerLoading.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/AnswerParser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/AnswerParser.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Answer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Answer/index.ts -------------------------------------------------------------------------------- /app/frontend/src/components/ApproachesButtonGroup/ApproachesButtonGroup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ApproachesButtonGroup/ApproachesButtonGroup.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/ApproachesButtonGroup/ApproachesButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ApproachesButtonGroup/ApproachesButtonGroup.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ApproachesButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ApproachesButtonGroup/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/CharacterStreamer/CharacterStreamer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/CharacterStreamer/CharacterStreamer.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ChatModeButtonGroup/ChatModeButtonGroup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ChatModeButtonGroup/ChatModeButtonGroup.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/ChatModeButtonGroup/ChatModeButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ChatModeButtonGroup/ChatModeButtonGroup.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ChatModeButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ChatModeButtonGroup/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ClearChatButton/ClearChatButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ClearChatButton/ClearChatButton.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/ClearChatButton/ClearChatButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ClearChatButton/ClearChatButton.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ClearChatButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ClearChatButton/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Example/Example.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Example/Example.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/Example/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Example/Example.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Example/ExampleList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Example/ExampleList.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Example/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/FileStatus/DocumentsDetailList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FileStatus/DocumentsDetailList.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/FileStatus/DocumentsDetailList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FileStatus/DocumentsDetailList.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/FileStatus/FileStatus.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FileStatus/FileStatus.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/FileStatus/FileStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FileStatus/FileStatus.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/FileStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FileStatus/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/FolderPicker/FolderPicker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FolderPicker/FolderPicker.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/FolderPicker/FolderPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FolderPicker/FolderPicker.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/FolderPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/FolderPicker/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/InfoButton/InfoButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/InfoButton/InfoButton.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/InfoButton/InfoButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/InfoButton/InfoButton.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/InfoButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/InfoButton/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/InfoContent/InfoContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/InfoContent/InfoContent.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/InfoContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/InfoContent/index.ts -------------------------------------------------------------------------------- /app/frontend/src/components/QuestionInput/QuestionInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/QuestionInput/QuestionInput.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/QuestionInput/QuestionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/QuestionInput/QuestionInput.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/QuestionInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/QuestionInput/index.ts -------------------------------------------------------------------------------- /app/frontend/src/components/RAIPanel/RAIPanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/RAIPanel/RAIPanel.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/RAIPanel/RAIPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/RAIPanel/RAIPanel.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/RAIPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/RAIPanel/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ResponseLengthButtonGroup/ResponseLengthButtonGroup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ResponseLengthButtonGroup/ResponseLengthButtonGroup.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/ResponseLengthButtonGroup/ResponseLengthButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ResponseLengthButtonGroup/ResponseLengthButtonGroup.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ResponseLengthButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ResponseLengthButtonGroup/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ResponseTempButtonGroup/ResponseTempButtonGroup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ResponseTempButtonGroup/ResponseTempButtonGroup.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/ResponseTempButtonGroup/ResponseTempButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ResponseTempButtonGroup/ResponseTempButtonGroup.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/ResponseTempButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/ResponseTempButtonGroup/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/SettingsButton/SettingsButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SettingsButton/SettingsButton.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/SettingsButton/SettingsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SettingsButton/SettingsButton.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/SettingsButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SettingsButton/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/StatusContent/StatusContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/StatusContent/StatusContent.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/SupportingContent/SupportingContent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SupportingContent/SupportingContent.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/SupportingContent/SupportingContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SupportingContent/SupportingContent.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/SupportingContent/SupportingContentParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SupportingContent/SupportingContentParser.ts -------------------------------------------------------------------------------- /app/frontend/src/components/SupportingContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/SupportingContent/index.ts -------------------------------------------------------------------------------- /app/frontend/src/components/TagPicker/TagPicker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/TagPicker/TagPicker.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/TagPicker/TagPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/TagPicker/TagPicker.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/TagPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/TagPicker/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/Title/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/Title/Title.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/UserChatMessage/UserChatMessage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/UserChatMessage/UserChatMessage.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/UserChatMessage/UserChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/UserChatMessage/UserChatMessage.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/UserChatMessage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/UserChatMessage/index.ts -------------------------------------------------------------------------------- /app/frontend/src/components/WarningBanner/WarningBanner.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/WarningBanner/WarningBanner.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/WarningBanner/WarningBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/WarningBanner/WarningBanner.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/WarningBanner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/WarningBanner/index.ts -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/check.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/clear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/clear.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/drop-zone.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/drop-zone.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/drop-zone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/drop-zone.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/file-picker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/file-picker.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/file-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/file-picker.tsx -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/files-list.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/files-list.module.css -------------------------------------------------------------------------------- /app/frontend/src/components/filepicker/files-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/components/filepicker/files-list.tsx -------------------------------------------------------------------------------- /app/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/index.css -------------------------------------------------------------------------------- /app/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/index.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/NoPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/NoPage.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/chat/Chat.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/chat/Chat.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/chat/Chat.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/content/Content.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/content/Content.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/content/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/content/Content.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/layout/Layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/layout/Layout.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/layout/Layout.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/Tda.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/Tda.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/Tda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/Tda.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/check.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/check.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/clear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/clear.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/drop-zone.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/drop-zone.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/drop-zone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/drop-zone.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/file-picker.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/file-picker.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/files-list.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/files-list.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/tda/files-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tda/files-list.tsx -------------------------------------------------------------------------------- /app/frontend/src/pages/tutor/Tutor.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tutor/Tutor.module.css -------------------------------------------------------------------------------- /app/frontend/src/pages/tutor/Tutor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/src/pages/tutor/Tutor.tsx -------------------------------------------------------------------------------- /app/frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /app/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/tsconfig.json -------------------------------------------------------------------------------- /app/frontend/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/version.json -------------------------------------------------------------------------------- /app/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/app/frontend/vite.config.ts -------------------------------------------------------------------------------- /azure_search/create_vector_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/azure_search/create_vector_index.json -------------------------------------------------------------------------------- /container_images/enrichment_container_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/container_images/enrichment_container_image/Dockerfile -------------------------------------------------------------------------------- /container_images/enrichment_container_image/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/container_images/enrichment_container_image/docker-build.sh -------------------------------------------------------------------------------- /container_images/webapp_container_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/container_images/webapp_container_image/Dockerfile -------------------------------------------------------------------------------- /container_images/webapp_container_image/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/container_images/webapp_container_image/docker-build.sh -------------------------------------------------------------------------------- /docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/CODEOWNERS -------------------------------------------------------------------------------- /docs/Information Assistant - Architecture Document v1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/Information Assistant - Architecture Document v1.0.pdf -------------------------------------------------------------------------------- /docs/container_webapp_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/container_webapp_debug.md -------------------------------------------------------------------------------- /docs/costestimator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/costestimator.md -------------------------------------------------------------------------------- /docs/deployment/accepting_responsible_ai_notice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/accepting_responsible_ai_notice.md -------------------------------------------------------------------------------- /docs/deployment/accepting_responsible_ai_notice_multi_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/accepting_responsible_ai_notice_multi_service.md -------------------------------------------------------------------------------- /docs/deployment/autoscale_sku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/autoscale_sku.md -------------------------------------------------------------------------------- /docs/deployment/client_credentials_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/client_credentials_flow.md -------------------------------------------------------------------------------- /docs/deployment/configure_local_dev_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/configure_local_dev_environment.md -------------------------------------------------------------------------------- /docs/deployment/considerations_production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/considerations_production.md -------------------------------------------------------------------------------- /docs/deployment/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/deployment.md -------------------------------------------------------------------------------- /docs/deployment/developing_in_a_GitHub_Codespaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/developing_in_a_GitHub_Codespaces.md -------------------------------------------------------------------------------- /docs/deployment/enable_sovereign_deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/enable_sovereign_deployment.md -------------------------------------------------------------------------------- /docs/deployment/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/image.png -------------------------------------------------------------------------------- /docs/deployment/manual_app_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/manual_app_registration.md -------------------------------------------------------------------------------- /docs/deployment/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/migrate.md -------------------------------------------------------------------------------- /docs/deployment/move_or_migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/move_or_migrate.md -------------------------------------------------------------------------------- /docs/deployment/setting_up_sandbox_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/setting_up_sandbox_environment.md -------------------------------------------------------------------------------- /docs/deployment/statusdb_cosmos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/statusdb_cosmos.md -------------------------------------------------------------------------------- /docs/deployment/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/troubleshooting.md -------------------------------------------------------------------------------- /docs/deployment/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/upgrade.md -------------------------------------------------------------------------------- /docs/deployment/using_ia_first_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/using_ia_first_time.md -------------------------------------------------------------------------------- /docs/deployment/workbook_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/deployment/workbook_usage.md -------------------------------------------------------------------------------- /docs/features/architectural_decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/architectural_decisions.md -------------------------------------------------------------------------------- /docs/features/bing_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/bing_search.md -------------------------------------------------------------------------------- /docs/features/cognitive_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/cognitive_search.md -------------------------------------------------------------------------------- /docs/features/configuring_language_env_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/configuring_language_env_files.md -------------------------------------------------------------------------------- /docs/features/document_pre_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/document_pre_processing.md -------------------------------------------------------------------------------- /docs/features/enable_customer_usage_attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/enable_customer_usage_attribution.md -------------------------------------------------------------------------------- /docs/features/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/features.md -------------------------------------------------------------------------------- /docs/features/optional_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/optional_features.md -------------------------------------------------------------------------------- /docs/features/sharepoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/sharepoint.md -------------------------------------------------------------------------------- /docs/features/user_experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/user_experience.md -------------------------------------------------------------------------------- /docs/features/ux_analysispanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/features/ux_analysispanel.md -------------------------------------------------------------------------------- /docs/function_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/function_debug.md -------------------------------------------------------------------------------- /docs/images/UX_analysispanel_supportingcontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/UX_analysispanel_supportingcontent.png -------------------------------------------------------------------------------- /docs/images/UX_analysispanel_thoughtprocess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/UX_analysispanel_thoughtprocess.png -------------------------------------------------------------------------------- /docs/images/UX_anlysispanel_citation_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/UX_anlysispanel_citation_document.png -------------------------------------------------------------------------------- /docs/images/UX_anlysispanel_citation_documentsection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/UX_anlysispanel_citation_documentsection.png -------------------------------------------------------------------------------- /docs/images/VectorSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/VectorSearch.png -------------------------------------------------------------------------------- /docs/images/adjust-settings-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/adjust-settings-ui.png -------------------------------------------------------------------------------- /docs/images/app_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/app_registration.png -------------------------------------------------------------------------------- /docs/images/appcomponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/appcomponents.png -------------------------------------------------------------------------------- /docs/images/ask-a-question-interface.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/ask-a-question-interface.jpg -------------------------------------------------------------------------------- /docs/images/authentication_identity_provider_identification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/authentication_identity_provider_identification.jpg -------------------------------------------------------------------------------- /docs/images/authentication_managed_application.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/authentication_managed_application.jpg -------------------------------------------------------------------------------- /docs/images/chat-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/chat-interface.png -------------------------------------------------------------------------------- /docs/images/codespace_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/codespace_creation.png -------------------------------------------------------------------------------- /docs/images/codespaces_building_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/codespaces_building_container.png -------------------------------------------------------------------------------- /docs/images/codespaces_open_in_vs_code_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/codespaces_open_in_vs_code_desktop.png -------------------------------------------------------------------------------- /docs/images/configure-answer-generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/configure-answer-generation.png -------------------------------------------------------------------------------- /docs/images/cosmos_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/cosmos_account.png -------------------------------------------------------------------------------- /docs/images/credential-lifespan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/credential-lifespan.png -------------------------------------------------------------------------------- /docs/images/custom_language_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/custom_language_file.png -------------------------------------------------------------------------------- /docs/images/data_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/data_explorer.png -------------------------------------------------------------------------------- /docs/images/deployment_app_service_location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/deployment_app_service_location.jpg -------------------------------------------------------------------------------- /docs/images/deployment_default_domain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/deployment_default_domain.jpg -------------------------------------------------------------------------------- /docs/images/developing_in_a_codespaces_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/developing_in_a_codespaces_image_1.png -------------------------------------------------------------------------------- /docs/images/developing_in_a_codespaces_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/developing_in_a_codespaces_image_2.png -------------------------------------------------------------------------------- /docs/images/developing_in_a_codespaces_open_in_vscode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/developing_in_a_codespaces_open_in_vscode_2.png -------------------------------------------------------------------------------- /docs/images/developing_in_a_codespaces_open_in_vscode_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/developing_in_a_codespaces_open_in_vscode_3.png -------------------------------------------------------------------------------- /docs/images/developing_in_a_codespaces_open_in_vscode_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/developing_in_a_codespaces_open_in_vscode_4.png -------------------------------------------------------------------------------- /docs/images/fastapi_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/fastapi_debug.png -------------------------------------------------------------------------------- /docs/images/fork_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/fork_repo.png -------------------------------------------------------------------------------- /docs/images/frontend-watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/frontend-watch.png -------------------------------------------------------------------------------- /docs/images/function_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/function_attach.png -------------------------------------------------------------------------------- /docs/images/function_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/function_running.png -------------------------------------------------------------------------------- /docs/images/generative-ungrounded-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/generative-ungrounded-ui.png -------------------------------------------------------------------------------- /docs/images/info-assist-chat-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/info-assist-chat-ui.png -------------------------------------------------------------------------------- /docs/images/info_assistant_chatscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/info_assistant_chatscreen.png -------------------------------------------------------------------------------- /docs/images/known_Issues_web_app_authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/known_Issues_web_app_authentication.png -------------------------------------------------------------------------------- /docs/images/manage-content-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/manage-content-delete.png -------------------------------------------------------------------------------- /docs/images/manage-content-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/manage-content-interface.png -------------------------------------------------------------------------------- /docs/images/manage-content-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/manage-content-ui.png -------------------------------------------------------------------------------- /docs/images/manage-content-upload-files-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/manage-content-upload-files-1.png -------------------------------------------------------------------------------- /docs/images/manage-content-upload-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/manage-content-upload-files.png -------------------------------------------------------------------------------- /docs/images/manage-content-upload-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/manage-content-upload-status.png -------------------------------------------------------------------------------- /docs/images/math-assistant-give-me-clues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/math-assistant-give-me-clues.png -------------------------------------------------------------------------------- /docs/images/math-assistant-show-me-how-to-solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/math-assistant-show-me-how-to-solve.png -------------------------------------------------------------------------------- /docs/images/math-assistant-show-me-the-answer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/math-assistant-show-me-the-answer.png -------------------------------------------------------------------------------- /docs/images/math-assistant-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/math-assistant-ui.png -------------------------------------------------------------------------------- /docs/images/python_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/python_version.png -------------------------------------------------------------------------------- /docs/images/sandbox_environment_build_pipeline_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/sandbox_environment_build_pipeline_configuration.png -------------------------------------------------------------------------------- /docs/images/secure-deploy-detail-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-detail-architecture.drawio -------------------------------------------------------------------------------- /docs/images/secure-deploy-detail-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-detail-architecture.png -------------------------------------------------------------------------------- /docs/images/secure-deploy-frontend-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-frontend-architecture.drawio -------------------------------------------------------------------------------- /docs/images/secure-deploy-frontend-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-frontend-architecture.png -------------------------------------------------------------------------------- /docs/images/secure-deploy-function-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-function-architecture.drawio -------------------------------------------------------------------------------- /docs/images/secure-deploy-function-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-function-architecture.png -------------------------------------------------------------------------------- /docs/images/secure-deploy-high-level-architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-high-level-architecture.drawio -------------------------------------------------------------------------------- /docs/images/secure-deploy-high-level-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-high-level-architecture.png -------------------------------------------------------------------------------- /docs/images/secure-deploy-network-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/secure-deploy-network-architecture.png -------------------------------------------------------------------------------- /docs/images/sharepoint-preview-designer-known-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/sharepoint-preview-designer-known-issue.png -------------------------------------------------------------------------------- /docs/images/sharepoint_logic_app_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/sharepoint_logic_app_diagram.png -------------------------------------------------------------------------------- /docs/images/tab-data-assist-how-many-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/tab-data-assist-how-many-rows.png -------------------------------------------------------------------------------- /docs/images/tab-data-assist-how-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/tab-data-assist-how-many.png -------------------------------------------------------------------------------- /docs/images/tab-data-assist-upload-files-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/tab-data-assist-upload-files-ui.png -------------------------------------------------------------------------------- /docs/images/upload-files-drag-drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/upload-files-drag-drop.jpg -------------------------------------------------------------------------------- /docs/images/upload-files-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/upload-files-link.png -------------------------------------------------------------------------------- /docs/images/upload-status-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/upload-status-delete.png -------------------------------------------------------------------------------- /docs/images/view-upload-status-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/view-upload-status-link.png -------------------------------------------------------------------------------- /docs/images/view-upload-status-options-and-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/view-upload-status-options-and-refresh.png -------------------------------------------------------------------------------- /docs/images/virtual_env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/virtual_env.jpg -------------------------------------------------------------------------------- /docs/images/vite-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/vite-debug.png -------------------------------------------------------------------------------- /docs/images/vscode_reopen_in_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/vscode_reopen_in_container.png -------------------------------------------------------------------------------- /docs/images/vscode_starting_dev_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/vscode_starting_dev_container.png -------------------------------------------------------------------------------- /docs/images/vscode_terminal_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/vscode_terminal_windows.png -------------------------------------------------------------------------------- /docs/images/webapp-backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/webapp-backend.png -------------------------------------------------------------------------------- /docs/images/webapp_debug_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/webapp_debug_1.png -------------------------------------------------------------------------------- /docs/images/webapp_debug_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/webapp_debug_2.png -------------------------------------------------------------------------------- /docs/images/webapp_debug_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/webapp_debug_3.png -------------------------------------------------------------------------------- /docs/images/work-plus-web-compare-with-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/work-plus-web-compare-with-web.png -------------------------------------------------------------------------------- /docs/images/work-plus-web-compare-with-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/work-plus-web-compare-with-work.png -------------------------------------------------------------------------------- /docs/images/work-plus-web-search-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/work-plus-web-search-web.png -------------------------------------------------------------------------------- /docs/images/work-plus-web-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/images/work-plus-web-ui.png -------------------------------------------------------------------------------- /docs/knownissues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/knownissues.md -------------------------------------------------------------------------------- /docs/process_flow_agent.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/process_flow_agent.drawio.png -------------------------------------------------------------------------------- /docs/process_flow_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/process_flow_agent.png -------------------------------------------------------------------------------- /docs/process_flow_chat.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/process_flow_chat.drawio.png -------------------------------------------------------------------------------- /docs/process_flow_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/process_flow_chat.png -------------------------------------------------------------------------------- /docs/secure_deployment/secure_costestimator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/secure_deployment/secure_costestimator.md -------------------------------------------------------------------------------- /docs/secure_deployment/secure_deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/secure_deployment/secure_deployment.md -------------------------------------------------------------------------------- /docs/status_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/status_log.md -------------------------------------------------------------------------------- /docs/transparency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/transparency.md -------------------------------------------------------------------------------- /docs/webapp_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/webapp_debug.md -------------------------------------------------------------------------------- /docs/work-plus-web-search-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/docs/work-plus-web-search-web.png -------------------------------------------------------------------------------- /functions/.dockerignore: -------------------------------------------------------------------------------- 1 | local.settings.json -------------------------------------------------------------------------------- /functions/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/.funcignore -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/Dockerfile -------------------------------------------------------------------------------- /functions/FileDeletion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileDeletion/__init__.py -------------------------------------------------------------------------------- /functions/FileDeletion/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileDeletion/function.json -------------------------------------------------------------------------------- /functions/FileFormRecPollingPDF/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileFormRecPollingPDF/__init__.py -------------------------------------------------------------------------------- /functions/FileFormRecPollingPDF/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileFormRecPollingPDF/function.json -------------------------------------------------------------------------------- /functions/FileFormRecSubmissionPDF/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileFormRecSubmissionPDF/__init__.py -------------------------------------------------------------------------------- /functions/FileFormRecSubmissionPDF/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileFormRecSubmissionPDF/function.json -------------------------------------------------------------------------------- /functions/FileLayoutParsingOther/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileLayoutParsingOther/__init__.py -------------------------------------------------------------------------------- /functions/FileLayoutParsingOther/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileLayoutParsingOther/function.json -------------------------------------------------------------------------------- /functions/FileUploadedFunc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileUploadedFunc/__init__.py -------------------------------------------------------------------------------- /functions/FileUploadedFunc/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/FileUploadedFunc/function.json -------------------------------------------------------------------------------- /functions/ImageEnrichment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/ImageEnrichment/__init__.py -------------------------------------------------------------------------------- /functions/ImageEnrichment/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/ImageEnrichment/function.json -------------------------------------------------------------------------------- /functions/ImageEnrichment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/ImageEnrichment/readme.md -------------------------------------------------------------------------------- /functions/TextEnrichment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/TextEnrichment/__init__.py -------------------------------------------------------------------------------- /functions/TextEnrichment/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/TextEnrichment/function.json -------------------------------------------------------------------------------- /functions/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/docker-build.sh -------------------------------------------------------------------------------- /functions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/host.json -------------------------------------------------------------------------------- /functions/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/requirements.txt -------------------------------------------------------------------------------- /functions/shared_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/shared_code/__init__.py -------------------------------------------------------------------------------- /functions/shared_code/status_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/shared_code/status_log.py -------------------------------------------------------------------------------- /functions/shared_code/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/shared_code/utilities.py -------------------------------------------------------------------------------- /functions/shared_code/utilities_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/functions/shared_code/utilities_helper.py -------------------------------------------------------------------------------- /infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/README.md -------------------------------------------------------------------------------- /infra/arm_templates/bing_search/bing.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/arm_templates/bing_search/bing.template.json -------------------------------------------------------------------------------- /infra/arm_templates/kv_secret/kv_secret.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/arm_templates/kv_secret/kv_secret.template.json -------------------------------------------------------------------------------- /infra/arm_templates/network/vnet.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/arm_templates/network/vnet.template.json -------------------------------------------------------------------------------- /infra/arm_templates/network/vnet_w_ddos.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/arm_templates/network/vnet_w_ddos.template.json -------------------------------------------------------------------------------- /infra/arm_templates/storage_container/container.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/arm_templates/storage_container/container.template.json -------------------------------------------------------------------------------- /infra/arm_templates/storage_queue/queue.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/arm_templates/storage_queue/queue.template.json -------------------------------------------------------------------------------- /infra/azure_roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/azure_roles.json -------------------------------------------------------------------------------- /infra/backend.tf.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/backend.tf.ci -------------------------------------------------------------------------------- /infra/backend.tf.us.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/backend.tf.us.ci -------------------------------------------------------------------------------- /infra/core/aad/entra.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/aad/entra.tf -------------------------------------------------------------------------------- /infra/core/aad/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/aad/variables.tf -------------------------------------------------------------------------------- /infra/core/ai/bingSearch/bingSearch.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/bingSearch/bingSearch.tf -------------------------------------------------------------------------------- /infra/core/ai/bingSearch/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/bingSearch/outputs.tf -------------------------------------------------------------------------------- /infra/core/ai/bingSearch/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/bingSearch/variables.tf -------------------------------------------------------------------------------- /infra/core/ai/cogServices/cogServices.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/cogServices/cogServices.tf -------------------------------------------------------------------------------- /infra/core/ai/cogServices/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/cogServices/outputs.tf -------------------------------------------------------------------------------- /infra/core/ai/cogServices/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/cogServices/variables.tf -------------------------------------------------------------------------------- /infra/core/ai/docintelligence/docintelligence.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/docintelligence/docintelligence.tf -------------------------------------------------------------------------------- /infra/core/ai/docintelligence/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/docintelligence/outputs.tf -------------------------------------------------------------------------------- /infra/core/ai/docintelligence/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/docintelligence/variables.tf -------------------------------------------------------------------------------- /infra/core/ai/openaiservices/openaiservices.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/openaiservices/openaiservices.tf -------------------------------------------------------------------------------- /infra/core/ai/openaiservices/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/openaiservices/outputs.tf -------------------------------------------------------------------------------- /infra/core/ai/openaiservices/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/ai/openaiservices/variables.tf -------------------------------------------------------------------------------- /infra/core/container_registry/container_registry.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/container_registry/container_registry.tf -------------------------------------------------------------------------------- /infra/core/container_registry/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/container_registry/outputs.tf -------------------------------------------------------------------------------- /infra/core/container_registry/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/container_registry/variables.tf -------------------------------------------------------------------------------- /infra/core/db/cosmosdb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/db/cosmosdb.tf -------------------------------------------------------------------------------- /infra/core/db/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/db/outputs.tf -------------------------------------------------------------------------------- /infra/core/db/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/db/variables.tf -------------------------------------------------------------------------------- /infra/core/host/enrichmentapp/enrichmentapp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/enrichmentapp/enrichmentapp.tf -------------------------------------------------------------------------------- /infra/core/host/enrichmentapp/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/enrichmentapp/outputs.tf -------------------------------------------------------------------------------- /infra/core/host/enrichmentapp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/enrichmentapp/variables.tf -------------------------------------------------------------------------------- /infra/core/host/functions/functions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/functions/functions.tf -------------------------------------------------------------------------------- /infra/core/host/functions/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/functions/outputs.tf -------------------------------------------------------------------------------- /infra/core/host/functions/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/functions/variables.tf -------------------------------------------------------------------------------- /infra/core/host/webapp/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/webapp/outputs.tf -------------------------------------------------------------------------------- /infra/core/host/webapp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/webapp/variables.tf -------------------------------------------------------------------------------- /infra/core/host/webapp/webapp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/host/webapp/webapp.tf -------------------------------------------------------------------------------- /infra/core/logging/loganalytics/logging.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/logging/loganalytics/logging.tf -------------------------------------------------------------------------------- /infra/core/logging/loganalytics/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/logging/loganalytics/outputs.tf -------------------------------------------------------------------------------- /infra/core/logging/loganalytics/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/logging/loganalytics/variables.tf -------------------------------------------------------------------------------- /infra/core/logging/monitor/monitor.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/logging/monitor/monitor.tf -------------------------------------------------------------------------------- /infra/core/logging/monitor/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/logging/monitor/variables.tf -------------------------------------------------------------------------------- /infra/core/network/network/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/network/network/network.tf -------------------------------------------------------------------------------- /infra/core/network/network/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/network/network/output.tf -------------------------------------------------------------------------------- /infra/core/network/network/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/network/network/variables.tf -------------------------------------------------------------------------------- /infra/core/network/privateDNS/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/network/privateDNS/outputs.tf -------------------------------------------------------------------------------- /infra/core/network/privateDNS/privateDNS.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/network/privateDNS/privateDNS.tf -------------------------------------------------------------------------------- /infra/core/network/privateDNS/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/network/privateDNS/variables.tf -------------------------------------------------------------------------------- /infra/core/search/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/search/outputs.tf -------------------------------------------------------------------------------- /infra/core/search/search-services.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/search/search-services.tf -------------------------------------------------------------------------------- /infra/core/search/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/search/variables.tf -------------------------------------------------------------------------------- /infra/core/security/keyvault/keyvault.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/keyvault/keyvault.tf -------------------------------------------------------------------------------- /infra/core/security/keyvault/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/keyvault/outputs.tf -------------------------------------------------------------------------------- /infra/core/security/keyvault/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/keyvault/variables.tf -------------------------------------------------------------------------------- /infra/core/security/keyvaultSecret/keyvaultSecret.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/keyvaultSecret/keyvaultSecret.tf -------------------------------------------------------------------------------- /infra/core/security/keyvaultSecret/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/core/security/keyvaultSecret/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/keyvaultSecret/variables.tf -------------------------------------------------------------------------------- /infra/core/security/role/role.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/role/role.tf -------------------------------------------------------------------------------- /infra/core/security/role/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/security/role/variables.tf -------------------------------------------------------------------------------- /infra/core/sharepoint/sharepoint.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/sharepoint/sharepoint.tf -------------------------------------------------------------------------------- /infra/core/sharepoint/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/sharepoint/variables.tf -------------------------------------------------------------------------------- /infra/core/storage/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/storage/outputs.tf -------------------------------------------------------------------------------- /infra/core/storage/storage-account.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/storage/storage-account.tf -------------------------------------------------------------------------------- /infra/core/storage/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/core/storage/variables.tf -------------------------------------------------------------------------------- /infra/logic_apps/logicapp_SharePointFileIngestion_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/logic_apps/logicapp_SharePointFileIngestion_template.json -------------------------------------------------------------------------------- /infra/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/main.tf -------------------------------------------------------------------------------- /infra/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/outputs.tf -------------------------------------------------------------------------------- /infra/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/providers.tf -------------------------------------------------------------------------------- /infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/infra/variables.tf -------------------------------------------------------------------------------- /openvpn/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/openvpn/info.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/package.json -------------------------------------------------------------------------------- /pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/README.md -------------------------------------------------------------------------------- /pipelines/azdo-gov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/azdo-gov.yml -------------------------------------------------------------------------------- /pipelines/azdo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/azdo.yml -------------------------------------------------------------------------------- /pipelines/demo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/demo.yml -------------------------------------------------------------------------------- /pipelines/devcontainer-ci.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/devcontainer-ci.env -------------------------------------------------------------------------------- /pipelines/pr-gov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/pr-gov.yml -------------------------------------------------------------------------------- /pipelines/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/pr.yml -------------------------------------------------------------------------------- /pipelines/templates/deploy-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/templates/deploy-template.yml -------------------------------------------------------------------------------- /pipelines/templates/destroy-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/templates/destroy-template.yml -------------------------------------------------------------------------------- /pipelines/templates/make-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/templates/make-command.yml -------------------------------------------------------------------------------- /pipelines/templates/testing-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/templates/testing-template.yml -------------------------------------------------------------------------------- /pipelines/vNext-gov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/vNext-gov.yml -------------------------------------------------------------------------------- /pipelines/vNext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/pipelines/vNext.yml -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/check-secure-mode-connectivity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/check-secure-mode-connectivity.sh -------------------------------------------------------------------------------- /scripts/check-subscription.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/check-subscription.sh -------------------------------------------------------------------------------- /scripts/configuration-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/configuration-create.sh -------------------------------------------------------------------------------- /scripts/deploy-enrichment-webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/deploy-enrichment-webapp.sh -------------------------------------------------------------------------------- /scripts/deploy-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/deploy-functions.sh -------------------------------------------------------------------------------- /scripts/deploy-search-indexes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/deploy-search-indexes.sh -------------------------------------------------------------------------------- /scripts/deploy-webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/deploy-webapp.sh -------------------------------------------------------------------------------- /scripts/environments/AzureEnvironments/AzureCloud.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/AzureEnvironments/AzureCloud.env -------------------------------------------------------------------------------- /scripts/environments/AzureEnvironments/AzureUSGovernment.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/AzureEnvironments/AzureUSGovernment.env -------------------------------------------------------------------------------- /scripts/environments/languages/el.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/languages/el.env -------------------------------------------------------------------------------- /scripts/environments/languages/en-US.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/languages/en-US.env -------------------------------------------------------------------------------- /scripts/environments/languages/es.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/languages/es.env -------------------------------------------------------------------------------- /scripts/environments/languages/language.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/languages/language.env.example -------------------------------------------------------------------------------- /scripts/environments/languages/pt-Br.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/languages/pt-Br.env -------------------------------------------------------------------------------- /scripts/environments/local.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/local.env.example -------------------------------------------------------------------------------- /scripts/environments/shared-ia-dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/shared-ia-dev.env -------------------------------------------------------------------------------- /scripts/environments/shared-ia.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/shared-ia.env -------------------------------------------------------------------------------- /scripts/environments/tmp-ia.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/tmp-ia.env -------------------------------------------------------------------------------- /scripts/environments/usgov-ia.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/environments/usgov-ia.env -------------------------------------------------------------------------------- /scripts/extract-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/extract-content.py -------------------------------------------------------------------------------- /scripts/extract-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/extract-dependencies.py -------------------------------------------------------------------------------- /scripts/functional-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/functional-tests.sh -------------------------------------------------------------------------------- /scripts/inf-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/inf-cleanup.sh -------------------------------------------------------------------------------- /scripts/inf-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/inf-create.sh -------------------------------------------------------------------------------- /scripts/inf-destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/inf-destroy.sh -------------------------------------------------------------------------------- /scripts/inf-import-state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/inf-import-state.sh -------------------------------------------------------------------------------- /scripts/inf-inject-dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/inf-inject-dependencies.py -------------------------------------------------------------------------------- /scripts/inf-manual-destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/inf-manual-destroy.sh -------------------------------------------------------------------------------- /scripts/json-to-env.function.debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/json-to-env.function.debug.sh -------------------------------------------------------------------------------- /scripts/json-to-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/json-to-env.sh -------------------------------------------------------------------------------- /scripts/json-to-env.webapp.debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/json-to-env.webapp.debug.sh -------------------------------------------------------------------------------- /scripts/load-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/load-env.sh -------------------------------------------------------------------------------- /scripts/merge-databases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/merge-databases.py -------------------------------------------------------------------------------- /scripts/prep-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/prep-env.sh -------------------------------------------------------------------------------- /scripts/prep-migration-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/prep-migration-env.sh -------------------------------------------------------------------------------- /scripts/prepare-tf-variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/prepare-tf-variables.sh -------------------------------------------------------------------------------- /scripts/push-to-acr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/push-to-acr.sh -------------------------------------------------------------------------------- /scripts/terraform-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/terraform-format.sh -------------------------------------------------------------------------------- /scripts/terraform-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/terraform-init.sh -------------------------------------------------------------------------------- /scripts/terraform-plan-apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/terraform-plan-apply.sh -------------------------------------------------------------------------------- /scripts/terraform-remote-backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/terraform-remote-backend.sh -------------------------------------------------------------------------------- /scripts/tf-dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/tf-dependencies.json -------------------------------------------------------------------------------- /scripts/time-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/time-sync.sh -------------------------------------------------------------------------------- /scripts/upgrade_repoint.config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/scripts/upgrade_repoint.config.json.example -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/debug_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/debug_tests.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/run_api_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/run_api_tests.py -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/run_tests.py -------------------------------------------------------------------------------- /tests/test_data/test_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.csv -------------------------------------------------------------------------------- /tests/test_data/test_example.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.docx -------------------------------------------------------------------------------- /tests/test_data/test_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.html -------------------------------------------------------------------------------- /tests/test_data/test_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.md -------------------------------------------------------------------------------- /tests/test_data/test_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.pdf -------------------------------------------------------------------------------- /tests/test_data/test_example.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.pptx -------------------------------------------------------------------------------- /tests/test_data/test_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.txt -------------------------------------------------------------------------------- /tests/test_data/test_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.xlsx -------------------------------------------------------------------------------- /tests/test_data/test_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PubSec-Info-Assistant/HEAD/tests/test_data/test_example.xml --------------------------------------------------------------------------------