반응형

In the previous post, we created a Custom Copilot that answers questions by crawling specific sites.

2024.10.05 - [Copilot Studio] - Copilot Studio. Create New Copilot

 

In the last post, we deployed it to Teams. This time, it will publish it to an IIS site.

I am not a developer but an engineer. Please consider this as a guide to understand the overall process and flow.

 

https://youtu.be/cx4l5QeFwcY

 

 

Settings in the upper right corner.

 

Security -> Authentication

 

No authentication -> Save

 

Save

 

Publish

 

Publish

 

Click Channels -> Demo website to verify if the deployed Copilot is functioning correctly on the web.

 

Ask a question to verify that it is functioning correctly.

 

Custom website

 

You will receive the embed code as shown below.

 

I have set up a test web server on an IIS server using Visual Studio as shown below. Now, let’s add the Copilot to it.

 

If you would like to build a test environment from scratch, please refer to the articles below.

2024.09.16 - [Microsoft 365/Graph & IIS] - Microsoft Graph & IIS. (1) Setting up the basic testing environment.

2024.09.16 - [Microsoft 365/Graph & IIS] - Microsoft Graph & IIS. (2) Publishing an ASP.NET Sample Page to IIS

 

 

I used Visual Studio as the development environment and added the following code to the Index.cshtml file.

<div style="margin-top: 20px;">
    <iframe src="CopilotURL"
            frameborder="0"
            style="width: 500px; height: 500px;">
    </iframe>
</div>

 

You can also run Copilot on a custom website as shown below.

반응형

+ Recent posts