├── .devcontainer └── devcontainer.json ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── SECURITY.md └── workflows │ ├── azure-dev.yml │ └── template-validation.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── azure.yaml ├── docker-compose.yaml ├── docs ├── ai_search.md ├── azure_account_setup.md ├── azure_app_service_auth_setup.md ├── create_new_app_registration.md ├── deploy_customization.md ├── deployment.md ├── images │ ├── agent_id_in_foundry_ui.png │ ├── agent_monitor.png │ ├── app_insight_logs_query.png │ ├── architecture.png │ ├── azure-app-service-auth-setup │ │ ├── AddDetails.png │ │ ├── AddPlatform.png │ │ ├── AddRedirectURL.png │ │ ├── AppAuthIdentityProvider.png │ │ ├── AppAuthIdentityProviderAdd.png │ │ ├── AppAuthIdentityProviderAdded.png │ │ ├── AppAuthentication.png │ │ ├── AppAuthenticationIdentity.png │ │ ├── Appregistrations.png │ │ ├── MicrosoftEntraID.png │ │ ├── NewRegistration.png │ │ ├── Web.png │ │ └── WebAppURL.png │ ├── enable_cont_eval.png │ ├── tracing_eval_screenshot.png │ ├── tracing_tab.png │ ├── vs_code_launch.png │ └── webapp_screenshot.png ├── local_development.md ├── observability.md ├── sample_questions.md └── troubleshooting.md ├── infra ├── abbreviations.json ├── api.bicep ├── core │ ├── ai │ │ └── cognitiveservices.bicep │ ├── host │ │ ├── ai-environment.bicep │ │ ├── container-app-upsert.bicep │ │ ├── container-app.bicep │ │ ├── container-apps-environment.bicep │ │ ├── container-apps.bicep │ │ └── container-registry.bicep │ ├── monitor │ │ ├── applicationinsights-dashboard.bicep │ │ ├── applicationinsights.bicep │ │ └── loganalytics.bicep │ ├── search │ │ └── search-services.bicep │ ├── security │ │ ├── appinsights-access.bicep │ │ ├── registry-access.bicep │ │ └── role.bicep │ └── storage │ │ └── storage-account.bicep ├── main.bicep ├── main.json └── main.parameters.json ├── next-steps.md ├── requirements-dev.txt ├── scripts ├── postdeploy.ps1 ├── postdeploy.sh ├── resolve_model_quota.ps1 ├── resolve_model_quota.sh ├── setup_credential.ps1 ├── setup_credential.sh ├── validate_env_vars.ps1 └── validate_env_vars.sh ├── src ├── .dockerignore ├── Dockerfile ├── __init__.py ├── api │ ├── __init__.py │ ├── data │ │ └── embeddings.csv │ ├── main.py │ ├── routes.py │ ├── search_index_manager.py │ ├── static │ │ └── assets │ │ │ └── template-images │ │ │ ├── AgentExploreBackground.png │ │ │ ├── AgentExploreCard_Dark.svg │ │ │ ├── AgentExploreCard_Light.svg │ │ │ ├── Avatar_Code.svg │ │ │ ├── Avatar_Consumer.svg │ │ │ ├── Avatar_Default.svg │ │ │ ├── Avatar_Financial Services.svg │ │ │ ├── Avatar_Healthcare.svg │ │ │ ├── Avatar_Industry.svg │ │ │ ├── Avatar_Travel.svg │ │ │ ├── AzureSearch.svg │ │ │ ├── Bing.svg │ │ │ ├── Code.svg │ │ │ ├── CodeInterpreter.svg │ │ │ ├── Consumer.svg │ │ │ ├── Financial Services.svg │ │ │ ├── Healthcare.svg │ │ │ ├── Industry.svg │ │ │ ├── Microsoft.svg │ │ │ ├── OpenApi.svg │ │ │ ├── ToolsExploreBackground.png │ │ │ ├── ToolsExploreCard_Dark.svg │ │ │ ├── ToolsExploreCard_Light.svg │ │ │ └── Travel.svg │ └── templates │ │ └── index.html ├── data │ └── embeddings.csv ├── files │ ├── customer_info_1.json │ ├── customer_info_10.json │ ├── customer_info_11.json │ ├── customer_info_12.json │ ├── customer_info_2.json │ ├── customer_info_3.json │ ├── customer_info_4.json │ ├── customer_info_5.json │ ├── customer_info_6.json │ ├── customer_info_7.json │ ├── customer_info_8.json │ ├── customer_info_9.json │ ├── product_info_1.md │ ├── product_info_10.md │ ├── product_info_11.md │ ├── product_info_12.md │ ├── product_info_13.md │ ├── product_info_14.md │ ├── product_info_15.md │ ├── product_info_16.md │ ├── product_info_17.md │ ├── product_info_18.md │ ├── product_info_19.md │ ├── product_info_2.md │ ├── product_info_20.md │ ├── product_info_3.md │ ├── product_info_4.md │ ├── product_info_5.md │ ├── product_info_6.md │ ├── product_info_7.md │ ├── product_info_8.md │ └── product_info_9.md ├── frontend │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── components │ │ │ ├── App.tsx │ │ │ ├── agents │ │ │ │ ├── AgentIcon.module.css │ │ │ │ ├── AgentIcon.tsx │ │ │ │ ├── AgentPreview.module.css │ │ │ │ ├── AgentPreview.tsx │ │ │ │ ├── AgentPreviewChatBot.module.css │ │ │ │ ├── AgentPreviewChatBot.tsx │ │ │ │ ├── AssistantMessage.module.css │ │ │ │ ├── AssistantMessage.tsx │ │ │ │ ├── BuiltWithBadge.module.css │ │ │ │ ├── BuiltWithBadge.tsx │ │ │ │ ├── StarterMessages.module.css │ │ │ │ ├── StarterMessages.tsx │ │ │ │ ├── UsageInfo.module.css │ │ │ │ ├── UsageInfo.tsx │ │ │ │ ├── UserMessage.module.css │ │ │ │ ├── UserMessage.tsx │ │ │ │ ├── Waves.tsx │ │ │ │ ├── chatbot │ │ │ │ │ ├── ChatInput.module.css │ │ │ │ │ ├── ChatInput.tsx │ │ │ │ │ └── types.ts │ │ │ │ └── hooks │ │ │ │ │ ├── useFormatTimestamp.ts │ │ │ │ │ └── useIsMotionReduced.ts │ │ │ ├── core │ │ │ │ ├── Markdown.module.css │ │ │ │ ├── Markdown.tsx │ │ │ │ ├── MenuButton │ │ │ │ │ ├── MenuButton.module.css │ │ │ │ │ └── MenuButton.tsx │ │ │ │ ├── SettingsPanel.module.css │ │ │ │ ├── SettingsPanel.tsx │ │ │ │ ├── ThinkBlock.module.css │ │ │ │ ├── ThinkBlock.tsx │ │ │ │ └── theme │ │ │ │ │ ├── ThemeContext.ts │ │ │ │ │ ├── ThemePicker.tsx │ │ │ │ │ ├── ThemeProvider.tsx │ │ │ │ │ ├── themes.ts │ │ │ │ │ └── useThemeProvider.ts │ │ │ └── icons │ │ │ │ └── AIFoundryLogo.tsx │ │ ├── css-modules.d.ts │ │ ├── main.tsx │ │ ├── svg.d.ts │ │ └── types │ │ │ └── chat.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── gunicorn.conf.py ├── logging_config.py ├── pyproject.toml ├── requirements.txt └── util.py └── tests ├── test_evaluation.py ├── test_red_teaming.py └── test_utils.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/azure-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.github/workflows/azure-dev.yml -------------------------------------------------------------------------------- /.github/workflows/template-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.github/workflows/template-validation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/azure.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/ai_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/ai_search.md -------------------------------------------------------------------------------- /docs/azure_account_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/azure_account_setup.md -------------------------------------------------------------------------------- /docs/azure_app_service_auth_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/azure_app_service_auth_setup.md -------------------------------------------------------------------------------- /docs/create_new_app_registration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/create_new_app_registration.md -------------------------------------------------------------------------------- /docs/deploy_customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/deploy_customization.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/images/agent_id_in_foundry_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/agent_id_in_foundry_ui.png -------------------------------------------------------------------------------- /docs/images/agent_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/agent_monitor.png -------------------------------------------------------------------------------- /docs/images/app_insight_logs_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/app_insight_logs_query.png -------------------------------------------------------------------------------- /docs/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/architecture.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AddDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AddDetails.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AddPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AddPlatform.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AddRedirectURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AddRedirectURL.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AppAuthIdentityProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AppAuthIdentityProvider.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AppAuthIdentityProviderAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AppAuthIdentityProviderAdd.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AppAuthIdentityProviderAdded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AppAuthIdentityProviderAdded.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AppAuthentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AppAuthentication.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/AppAuthenticationIdentity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/AppAuthenticationIdentity.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/Appregistrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/Appregistrations.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/MicrosoftEntraID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/MicrosoftEntraID.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/NewRegistration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/NewRegistration.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/Web.png -------------------------------------------------------------------------------- /docs/images/azure-app-service-auth-setup/WebAppURL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/azure-app-service-auth-setup/WebAppURL.png -------------------------------------------------------------------------------- /docs/images/enable_cont_eval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/enable_cont_eval.png -------------------------------------------------------------------------------- /docs/images/tracing_eval_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/tracing_eval_screenshot.png -------------------------------------------------------------------------------- /docs/images/tracing_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/tracing_tab.png -------------------------------------------------------------------------------- /docs/images/vs_code_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/vs_code_launch.png -------------------------------------------------------------------------------- /docs/images/webapp_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/images/webapp_screenshot.png -------------------------------------------------------------------------------- /docs/local_development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/local_development.md -------------------------------------------------------------------------------- /docs/observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/observability.md -------------------------------------------------------------------------------- /docs/sample_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/sample_questions.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/api.bicep -------------------------------------------------------------------------------- /infra/core/ai/cognitiveservices.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/ai/cognitiveservices.bicep -------------------------------------------------------------------------------- /infra/core/host/ai-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/host/ai-environment.bicep -------------------------------------------------------------------------------- /infra/core/host/container-app-upsert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/host/container-app-upsert.bicep -------------------------------------------------------------------------------- /infra/core/host/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/host/container-app.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/host/container-apps-environment.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/host/container-apps.bicep -------------------------------------------------------------------------------- /infra/core/host/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/host/container-registry.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights-dashboard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/monitor/applicationinsights-dashboard.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/monitor/applicationinsights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/loganalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/monitor/loganalytics.bicep -------------------------------------------------------------------------------- /infra/core/search/search-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/search/search-services.bicep -------------------------------------------------------------------------------- /infra/core/security/appinsights-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/security/appinsights-access.bicep -------------------------------------------------------------------------------- /infra/core/security/registry-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/security/registry-access.bicep -------------------------------------------------------------------------------- /infra/core/security/role.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/security/role.bicep -------------------------------------------------------------------------------- /infra/core/storage/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/core/storage/storage-account.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/main.json -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/next-steps.md -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r src/requirements.txt 2 | pytest 3 | ruff 4 | pre-commit -------------------------------------------------------------------------------- /scripts/postdeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/postdeploy.ps1 -------------------------------------------------------------------------------- /scripts/postdeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/postdeploy.sh -------------------------------------------------------------------------------- /scripts/resolve_model_quota.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/resolve_model_quota.ps1 -------------------------------------------------------------------------------- /scripts/resolve_model_quota.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/resolve_model_quota.sh -------------------------------------------------------------------------------- /scripts/setup_credential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/setup_credential.ps1 -------------------------------------------------------------------------------- /scripts/setup_credential.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/setup_credential.sh -------------------------------------------------------------------------------- /scripts/validate_env_vars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/validate_env_vars.ps1 -------------------------------------------------------------------------------- /scripts/validate_env_vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/scripts/validate_env_vars.sh -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .venv/ 3 | **/*.pyc 4 | frontend/node_modules 5 | -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/api/data/embeddings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/data/embeddings.csv -------------------------------------------------------------------------------- /src/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/main.py -------------------------------------------------------------------------------- /src/api/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/routes.py -------------------------------------------------------------------------------- /src/api/search_index_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/search_index_manager.py -------------------------------------------------------------------------------- /src/api/static/assets/template-images/AgentExploreBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/AgentExploreBackground.png -------------------------------------------------------------------------------- /src/api/static/assets/template-images/AgentExploreCard_Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/AgentExploreCard_Dark.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/AgentExploreCard_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/AgentExploreCard_Light.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Code.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Consumer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Consumer.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Default.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Financial Services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Financial Services.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Healthcare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Healthcare.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Industry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Industry.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Avatar_Travel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Avatar_Travel.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/AzureSearch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/AzureSearch.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Bing.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Code.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/CodeInterpreter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/CodeInterpreter.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Consumer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Consumer.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Financial Services.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Financial Services.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Healthcare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Healthcare.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Industry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Industry.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Microsoft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Microsoft.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/OpenApi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/OpenApi.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/ToolsExploreBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/ToolsExploreBackground.png -------------------------------------------------------------------------------- /src/api/static/assets/template-images/ToolsExploreCard_Dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/ToolsExploreCard_Dark.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/ToolsExploreCard_Light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/ToolsExploreCard_Light.svg -------------------------------------------------------------------------------- /src/api/static/assets/template-images/Travel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/static/assets/template-images/Travel.svg -------------------------------------------------------------------------------- /src/api/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/api/templates/index.html -------------------------------------------------------------------------------- /src/data/embeddings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/data/embeddings.csv -------------------------------------------------------------------------------- /src/files/customer_info_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_1.json -------------------------------------------------------------------------------- /src/files/customer_info_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_10.json -------------------------------------------------------------------------------- /src/files/customer_info_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_11.json -------------------------------------------------------------------------------- /src/files/customer_info_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_12.json -------------------------------------------------------------------------------- /src/files/customer_info_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_2.json -------------------------------------------------------------------------------- /src/files/customer_info_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_3.json -------------------------------------------------------------------------------- /src/files/customer_info_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_4.json -------------------------------------------------------------------------------- /src/files/customer_info_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_5.json -------------------------------------------------------------------------------- /src/files/customer_info_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_6.json -------------------------------------------------------------------------------- /src/files/customer_info_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_7.json -------------------------------------------------------------------------------- /src/files/customer_info_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_8.json -------------------------------------------------------------------------------- /src/files/customer_info_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/customer_info_9.json -------------------------------------------------------------------------------- /src/files/product_info_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_1.md -------------------------------------------------------------------------------- /src/files/product_info_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_10.md -------------------------------------------------------------------------------- /src/files/product_info_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_11.md -------------------------------------------------------------------------------- /src/files/product_info_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_12.md -------------------------------------------------------------------------------- /src/files/product_info_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_13.md -------------------------------------------------------------------------------- /src/files/product_info_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_14.md -------------------------------------------------------------------------------- /src/files/product_info_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_15.md -------------------------------------------------------------------------------- /src/files/product_info_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_16.md -------------------------------------------------------------------------------- /src/files/product_info_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_17.md -------------------------------------------------------------------------------- /src/files/product_info_18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_18.md -------------------------------------------------------------------------------- /src/files/product_info_19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_19.md -------------------------------------------------------------------------------- /src/files/product_info_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_2.md -------------------------------------------------------------------------------- /src/files/product_info_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_20.md -------------------------------------------------------------------------------- /src/files/product_info_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_3.md -------------------------------------------------------------------------------- /src/files/product_info_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_4.md -------------------------------------------------------------------------------- /src/files/product_info_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_5.md -------------------------------------------------------------------------------- /src/files/product_info_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_6.md -------------------------------------------------------------------------------- /src/files/product_info_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_7.md -------------------------------------------------------------------------------- /src/files/product_info_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_8.md -------------------------------------------------------------------------------- /src/files/product_info_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/files/product_info_9.md -------------------------------------------------------------------------------- /src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/package.json -------------------------------------------------------------------------------- /src/frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/frontend/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/App.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AgentIcon.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AgentIcon.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AgentIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AgentIcon.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AgentPreview.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AgentPreview.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AgentPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AgentPreview.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AgentPreviewChatBot.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AgentPreviewChatBot.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AgentPreviewChatBot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AgentPreviewChatBot.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AssistantMessage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AssistantMessage.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/AssistantMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/AssistantMessage.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/BuiltWithBadge.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/BuiltWithBadge.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/BuiltWithBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/BuiltWithBadge.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/StarterMessages.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/StarterMessages.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/StarterMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/StarterMessages.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/UsageInfo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/UsageInfo.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/UsageInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/UsageInfo.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/UserMessage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/UserMessage.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/UserMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/UserMessage.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/Waves.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/Waves.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/chatbot/ChatInput.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/chatbot/ChatInput.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/agents/chatbot/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/chatbot/ChatInput.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/agents/chatbot/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/chatbot/types.ts -------------------------------------------------------------------------------- /src/frontend/src/components/agents/hooks/useFormatTimestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/hooks/useFormatTimestamp.ts -------------------------------------------------------------------------------- /src/frontend/src/components/agents/hooks/useIsMotionReduced.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/agents/hooks/useIsMotionReduced.ts -------------------------------------------------------------------------------- /src/frontend/src/components/core/Markdown.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/Markdown.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/core/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/Markdown.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/core/MenuButton/MenuButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/MenuButton/MenuButton.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/core/MenuButton/MenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/MenuButton/MenuButton.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/core/SettingsPanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/SettingsPanel.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/core/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/SettingsPanel.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/core/ThinkBlock.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/ThinkBlock.module.css -------------------------------------------------------------------------------- /src/frontend/src/components/core/ThinkBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/ThinkBlock.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/core/theme/ThemeContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/theme/ThemeContext.ts -------------------------------------------------------------------------------- /src/frontend/src/components/core/theme/ThemePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/theme/ThemePicker.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/core/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/frontend/src/components/core/theme/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/theme/themes.ts -------------------------------------------------------------------------------- /src/frontend/src/components/core/theme/useThemeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/core/theme/useThemeProvider.ts -------------------------------------------------------------------------------- /src/frontend/src/components/icons/AIFoundryLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/components/icons/AIFoundryLogo.tsx -------------------------------------------------------------------------------- /src/frontend/src/css-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/css-modules.d.ts -------------------------------------------------------------------------------- /src/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/main.tsx -------------------------------------------------------------------------------- /src/frontend/src/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/svg.d.ts -------------------------------------------------------------------------------- /src/frontend/src/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/src/types/chat.ts -------------------------------------------------------------------------------- /src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /src/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /src/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/frontend/vite.config.ts -------------------------------------------------------------------------------- /src/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/gunicorn.conf.py -------------------------------------------------------------------------------- /src/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/logging_config.py -------------------------------------------------------------------------------- /src/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/pyproject.toml -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/src/util.py -------------------------------------------------------------------------------- /tests/test_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/tests/test_evaluation.py -------------------------------------------------------------------------------- /tests/test_red_teaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/tests/test_red_teaming.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/get-started-with-ai-agents/HEAD/tests/test_utils.py --------------------------------------------------------------------------------