├── .github └── workflows │ └── auto_add_to_project.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── session-delivery-resources ├── README.md ├── custom-engine-agent │ ├── data │ │ ├── Ajlal Nueimat.pdf │ │ ├── Alexis Bourgeois.pdf │ │ ├── Anna Ostrowska.pdf │ │ ├── Anthony Ivanov.pdf │ │ ├── Archie Boyle.pdf │ │ ├── Ariane Meyer.pdf │ │ ├── Arnel Cruz.pdf │ │ ├── Bao Guo.pdf │ │ ├── Brita Tamm.pdf │ │ ├── Carme Fontbernat.pdf │ │ ├── Dabir Al.pdf │ │ ├── Dai Nakamura.pdf │ │ ├── Enric Argilaguet.pdf │ │ ├── Fatma Yilmaz.pdf │ │ ├── Gökçe Aslan.pdf │ │ ├── Hacer Çetin.pdf │ │ ├── Hamed Bettar.pdf │ │ ├── Hanno Simon.pdf │ │ ├── Irena Jaworska.pdf │ │ ├── Isaac Talbot.pdf │ │ ├── Marina Rodríguez.pdf │ │ ├── Marites Reyes.pdf │ │ ├── Marta Guanyavents.pdf │ │ ├── Mia Zimmermann.pdf │ │ ├── Ni Kang.pdf │ │ ├── Nihad Samaha.pdf │ │ ├── Pedro Armijo.pdf │ │ ├── Qi Shi.pdf │ │ ├── Qing Cao.pdf │ │ ├── Renata Hall.pdf │ │ ├── Saara Teinemaa.pdf │ │ ├── Sara Folgueroles.pdf │ │ ├── Shiori Sakamoto.pdf │ │ ├── Yueying Ren.pdf │ │ └── Yuu Shibata.pdf │ └── readme.md └── declarative-agent │ ├── README.md │ └── assets │ ├── copilot-chat-screen.png │ ├── explain-comparison.png │ ├── recommend-product.png │ ├── tell-me-about-contoso-quad.png │ └── working-trey.png └── src ├── README.md ├── custom-engine-agent ├── .gitignore ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── .webappignore ├── README.md ├── aad.manifest.json ├── adapter.ts ├── app │ ├── actions.ts │ ├── app.ts │ └── card.ts ├── appPackage │ ├── color.png │ ├── manifest.json │ └── outline.png ├── build │ └── aad.manifest.local.json ├── config.ts ├── env │ ├── .env.dev │ ├── .env.local.sample │ ├── .env.local.user.sample │ └── .env.testtool ├── index.ts ├── infra │ ├── azure.bicep │ ├── azure.parameters.json │ └── botRegistration │ │ ├── azurebot.bicep │ │ └── readme.md ├── package-lock.json ├── package.json ├── prompts │ ├── chat │ │ ├── config.json │ │ └── skprompt.txt │ └── monologue │ │ ├── actions.json │ │ ├── config.json │ │ └── skprompt.txt ├── public │ ├── auth-end.html │ └── auth-start.html ├── src │ ├── adapter.ts │ ├── app │ │ ├── actions.ts │ │ ├── app.ts │ │ └── card.ts │ ├── config.ts │ ├── index.ts │ ├── prompts │ │ ├── chat │ │ │ ├── config.json │ │ │ └── skprompt.txt │ │ └── monologue │ │ │ ├── actions.json │ │ │ ├── config.json │ │ │ └── skprompt.txt │ └── public │ │ ├── auth-end.html │ │ └── auth-start.html ├── teamsapp.local.yml ├── teamsapp.testtool.yml ├── teamsapp.yml ├── tsconfig.json └── web.config └── declarative-agent ├── .funcignore ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── TreyResearch API.postman_collection.json ├── appPackage ├── TreyResearch-blue-192.png ├── TreyResearch-blue-32.png ├── extra-icons │ ├── TreyResearch-gold-192.png │ ├── TreyResearch-gold-32.png │ ├── TreyResearch-green-192.png │ ├── TreyResearch-green-32.png │ ├── TreyResearch-red-192.png │ ├── TreyResearch-red-32.png │ ├── color.png │ └── outline.png ├── manifest.json ├── trey-declarative-agent.json ├── trey-definition.json └── trey-plugin.json ├── env ├── .env.dev ├── .env.local.sample └── .env.local.user.sample ├── host.json ├── http └── treyResearchAPI.http ├── infra ├── azure.bicep └── azure.parameters.json ├── local.settings.json ├── package-lock.json ├── package.json ├── sampleDocs ├── Bellows College MSA.docx ├── Bellows College NDA.docx ├── Bellows College SOW - Network security review.docx ├── My Hours.xlsx ├── Woodgrove MSA.docx ├── Woodgrove NDA.docx └── Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx ├── scripts ├── db-setup.js └── db │ ├── Assignment.json │ ├── Consultant.json │ └── Project.json ├── src ├── functions │ ├── consultants.ts │ ├── me.ts │ └── projects.ts ├── model │ ├── apiModel.ts │ ├── baseModel.ts │ └── dbModel.ts └── services │ ├── AssignmentDbService.ts │ ├── ConsultantApiService.ts │ ├── ConsultantDbService.ts │ ├── DbService.ts │ ├── IdentityService.ts │ ├── ProjectApiService.ts │ ├── ProjectDbService.ts │ └── Utilities.ts ├── teamsapp.local.yml ├── teamsapp.yml └── tsconfig.json /.github/workflows/auto_add_to_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/.github/workflows/auto_add_to_project.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /session-delivery-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/README.md -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Ajlal Nueimat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Ajlal Nueimat.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Alexis Bourgeois.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Alexis Bourgeois.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Anna Ostrowska.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Anna Ostrowska.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Anthony Ivanov.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Anthony Ivanov.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Archie Boyle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Archie Boyle.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Ariane Meyer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Ariane Meyer.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Arnel Cruz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Arnel Cruz.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Bao Guo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Bao Guo.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Brita Tamm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Brita Tamm.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Carme Fontbernat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Carme Fontbernat.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Dabir Al.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Dabir Al.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Dai Nakamura.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Dai Nakamura.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Enric Argilaguet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Enric Argilaguet.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Fatma Yilmaz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Fatma Yilmaz.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Gökçe Aslan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Gökçe Aslan.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Hacer Çetin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Hacer Çetin.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Hamed Bettar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Hamed Bettar.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Hanno Simon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Hanno Simon.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Irena Jaworska.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Irena Jaworska.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Isaac Talbot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Isaac Talbot.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Marina Rodríguez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Marina Rodríguez.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Marites Reyes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Marites Reyes.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Marta Guanyavents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Marta Guanyavents.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Mia Zimmermann.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Mia Zimmermann.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Ni Kang.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Ni Kang.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Nihad Samaha.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Nihad Samaha.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Pedro Armijo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Pedro Armijo.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Qi Shi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Qi Shi.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Qing Cao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Qing Cao.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Renata Hall.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Renata Hall.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Saara Teinemaa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Saara Teinemaa.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Sara Folgueroles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Sara Folgueroles.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Shiori Sakamoto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Shiori Sakamoto.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Yueying Ren.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Yueying Ren.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/data/Yuu Shibata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/data/Yuu Shibata.pdf -------------------------------------------------------------------------------- /session-delivery-resources/custom-engine-agent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/custom-engine-agent/readme.md -------------------------------------------------------------------------------- /session-delivery-resources/declarative-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/declarative-agent/README.md -------------------------------------------------------------------------------- /session-delivery-resources/declarative-agent/assets/copilot-chat-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/declarative-agent/assets/copilot-chat-screen.png -------------------------------------------------------------------------------- /session-delivery-resources/declarative-agent/assets/explain-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/declarative-agent/assets/explain-comparison.png -------------------------------------------------------------------------------- /session-delivery-resources/declarative-agent/assets/recommend-product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/declarative-agent/assets/recommend-product.png -------------------------------------------------------------------------------- /session-delivery-resources/declarative-agent/assets/tell-me-about-contoso-quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/declarative-agent/assets/tell-me-about-contoso-quad.png -------------------------------------------------------------------------------- /session-delivery-resources/declarative-agent/assets/working-trey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/session-delivery-resources/declarative-agent/assets/working-trey.png -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/README.md -------------------------------------------------------------------------------- /src/custom-engine-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/.gitignore -------------------------------------------------------------------------------- /src/custom-engine-agent/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/.vscode/extensions.json -------------------------------------------------------------------------------- /src/custom-engine-agent/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/.vscode/launch.json -------------------------------------------------------------------------------- /src/custom-engine-agent/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/.vscode/settings.json -------------------------------------------------------------------------------- /src/custom-engine-agent/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/.vscode/tasks.json -------------------------------------------------------------------------------- /src/custom-engine-agent/.webappignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/.webappignore -------------------------------------------------------------------------------- /src/custom-engine-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/README.md -------------------------------------------------------------------------------- /src/custom-engine-agent/aad.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/aad.manifest.json -------------------------------------------------------------------------------- /src/custom-engine-agent/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/adapter.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/app/actions.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/app/app.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/app/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/app/card.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/appPackage/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/appPackage/color.png -------------------------------------------------------------------------------- /src/custom-engine-agent/appPackage/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/appPackage/manifest.json -------------------------------------------------------------------------------- /src/custom-engine-agent/appPackage/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/appPackage/outline.png -------------------------------------------------------------------------------- /src/custom-engine-agent/build/aad.manifest.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/build/aad.manifest.local.json -------------------------------------------------------------------------------- /src/custom-engine-agent/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/config.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/env/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/env/.env.dev -------------------------------------------------------------------------------- /src/custom-engine-agent/env/.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/env/.env.local.sample -------------------------------------------------------------------------------- /src/custom-engine-agent/env/.env.local.user.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/env/.env.local.user.sample -------------------------------------------------------------------------------- /src/custom-engine-agent/env/.env.testtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/env/.env.testtool -------------------------------------------------------------------------------- /src/custom-engine-agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/index.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/infra/azure.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/infra/azure.bicep -------------------------------------------------------------------------------- /src/custom-engine-agent/infra/azure.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/infra/azure.parameters.json -------------------------------------------------------------------------------- /src/custom-engine-agent/infra/botRegistration/azurebot.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/infra/botRegistration/azurebot.bicep -------------------------------------------------------------------------------- /src/custom-engine-agent/infra/botRegistration/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/infra/botRegistration/readme.md -------------------------------------------------------------------------------- /src/custom-engine-agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/package-lock.json -------------------------------------------------------------------------------- /src/custom-engine-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/package.json -------------------------------------------------------------------------------- /src/custom-engine-agent/prompts/chat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/prompts/chat/config.json -------------------------------------------------------------------------------- /src/custom-engine-agent/prompts/chat/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/prompts/chat/skprompt.txt -------------------------------------------------------------------------------- /src/custom-engine-agent/prompts/monologue/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/prompts/monologue/actions.json -------------------------------------------------------------------------------- /src/custom-engine-agent/prompts/monologue/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/prompts/monologue/config.json -------------------------------------------------------------------------------- /src/custom-engine-agent/prompts/monologue/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/prompts/monologue/skprompt.txt -------------------------------------------------------------------------------- /src/custom-engine-agent/public/auth-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/public/auth-end.html -------------------------------------------------------------------------------- /src/custom-engine-agent/public/auth-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/public/auth-start.html -------------------------------------------------------------------------------- /src/custom-engine-agent/src/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/adapter.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/src/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/app/actions.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/src/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/app/app.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/src/app/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/app/card.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/config.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/index.ts -------------------------------------------------------------------------------- /src/custom-engine-agent/src/prompts/chat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/prompts/chat/config.json -------------------------------------------------------------------------------- /src/custom-engine-agent/src/prompts/chat/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/prompts/chat/skprompt.txt -------------------------------------------------------------------------------- /src/custom-engine-agent/src/prompts/monologue/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/prompts/monologue/actions.json -------------------------------------------------------------------------------- /src/custom-engine-agent/src/prompts/monologue/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/prompts/monologue/config.json -------------------------------------------------------------------------------- /src/custom-engine-agent/src/prompts/monologue/skprompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/prompts/monologue/skprompt.txt -------------------------------------------------------------------------------- /src/custom-engine-agent/src/public/auth-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/public/auth-end.html -------------------------------------------------------------------------------- /src/custom-engine-agent/src/public/auth-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/src/public/auth-start.html -------------------------------------------------------------------------------- /src/custom-engine-agent/teamsapp.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/teamsapp.local.yml -------------------------------------------------------------------------------- /src/custom-engine-agent/teamsapp.testtool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/teamsapp.testtool.yml -------------------------------------------------------------------------------- /src/custom-engine-agent/teamsapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/teamsapp.yml -------------------------------------------------------------------------------- /src/custom-engine-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/tsconfig.json -------------------------------------------------------------------------------- /src/custom-engine-agent/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/custom-engine-agent/web.config -------------------------------------------------------------------------------- /src/declarative-agent/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/.funcignore -------------------------------------------------------------------------------- /src/declarative-agent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/.gitignore -------------------------------------------------------------------------------- /src/declarative-agent/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/.vscode/extensions.json -------------------------------------------------------------------------------- /src/declarative-agent/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/.vscode/launch.json -------------------------------------------------------------------------------- /src/declarative-agent/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/.vscode/settings.json -------------------------------------------------------------------------------- /src/declarative-agent/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/.vscode/tasks.json -------------------------------------------------------------------------------- /src/declarative-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/README.md -------------------------------------------------------------------------------- /src/declarative-agent/TreyResearch API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/TreyResearch API.postman_collection.json -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/TreyResearch-blue-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/TreyResearch-blue-192.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/TreyResearch-blue-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/TreyResearch-blue-32.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/TreyResearch-gold-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/TreyResearch-gold-192.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/TreyResearch-gold-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/TreyResearch-gold-32.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/TreyResearch-green-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/TreyResearch-green-192.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/TreyResearch-green-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/TreyResearch-green-32.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/TreyResearch-red-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/TreyResearch-red-192.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/TreyResearch-red-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/TreyResearch-red-32.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/color.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/extra-icons/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/extra-icons/outline.png -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/manifest.json -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/trey-declarative-agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/trey-declarative-agent.json -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/trey-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/trey-definition.json -------------------------------------------------------------------------------- /src/declarative-agent/appPackage/trey-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/appPackage/trey-plugin.json -------------------------------------------------------------------------------- /src/declarative-agent/env/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/env/.env.dev -------------------------------------------------------------------------------- /src/declarative-agent/env/.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/env/.env.local.sample -------------------------------------------------------------------------------- /src/declarative-agent/env/.env.local.user.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/env/.env.local.user.sample -------------------------------------------------------------------------------- /src/declarative-agent/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/host.json -------------------------------------------------------------------------------- /src/declarative-agent/http/treyResearchAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/http/treyResearchAPI.http -------------------------------------------------------------------------------- /src/declarative-agent/infra/azure.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/infra/azure.bicep -------------------------------------------------------------------------------- /src/declarative-agent/infra/azure.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/infra/azure.parameters.json -------------------------------------------------------------------------------- /src/declarative-agent/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/local.settings.json -------------------------------------------------------------------------------- /src/declarative-agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/package-lock.json -------------------------------------------------------------------------------- /src/declarative-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/package.json -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/Bellows College MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/Bellows College MSA.docx -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/Bellows College NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/Bellows College NDA.docx -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/Bellows College SOW - Network security review.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/Bellows College SOW - Network security review.docx -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/My Hours.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/My Hours.xlsx -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/Woodgrove MSA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/Woodgrove MSA.docx -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/Woodgrove NDA.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/Woodgrove NDA.docx -------------------------------------------------------------------------------- /src/declarative-agent/sampleDocs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/sampleDocs/Woodgrove SOW - Financial data plugin for Microsoft Copilot.docx -------------------------------------------------------------------------------- /src/declarative-agent/scripts/db-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/scripts/db-setup.js -------------------------------------------------------------------------------- /src/declarative-agent/scripts/db/Assignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/scripts/db/Assignment.json -------------------------------------------------------------------------------- /src/declarative-agent/scripts/db/Consultant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/scripts/db/Consultant.json -------------------------------------------------------------------------------- /src/declarative-agent/scripts/db/Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/scripts/db/Project.json -------------------------------------------------------------------------------- /src/declarative-agent/src/functions/consultants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/functions/consultants.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/functions/me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/functions/me.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/functions/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/functions/projects.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/model/apiModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/model/apiModel.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/model/baseModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/model/baseModel.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/model/dbModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/model/dbModel.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/AssignmentDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/AssignmentDbService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/ConsultantApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/ConsultantApiService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/ConsultantDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/ConsultantDbService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/DbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/DbService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/IdentityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/IdentityService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/ProjectApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/ProjectApiService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/ProjectDbService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/ProjectDbService.ts -------------------------------------------------------------------------------- /src/declarative-agent/src/services/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/src/services/Utilities.ts -------------------------------------------------------------------------------- /src/declarative-agent/teamsapp.local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/teamsapp.local.yml -------------------------------------------------------------------------------- /src/declarative-agent/teamsapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/teamsapp.yml -------------------------------------------------------------------------------- /src/declarative-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/aitour-customizing-microsoft-copilot/HEAD/src/declarative-agent/tsconfig.json --------------------------------------------------------------------------------