garrytrinder/msteams-azure-search-openai-demo

Why is not using existing Azure Services which have been deployed with azure search

Closed this issue · 2 comments

Like in my case it have deployed all these
image
shouldn't it share Storage and as in my previous chat with you, you told that it needs Azure Search App to be deployed but then why is it using a new app as well.

This sample was designed to be a standalone app and so uses its own Azure resources.

The resources required for the sample are:

  • Azure Bot Service, acts as a message broker to send messages to and from Microsoft Teams and bot code
  • Azure Web App, used as the bot messaging endpoint and bot logic
  • Storage Account (Blob Container), stores conversation state and history

These resources are defined in

In the teamsapp.yml file there are two tasks that provision these resources and also deploy the code.

If you want to reuse existing resources, then I would suggest updating these files to your needs.

oh thanks for the clarification.