Skip to content

Commit c64a05d

Browse files
authored
Update 3-exercise-create-currency-converter.md
1 parent 56cbd26 commit c64a05d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

learn-pr/wwl-azure/guided-project-create-ai-travel-agent/includes/3-exercise-create-currency-converter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ For this exercise, you create a plugin that allows the user to convert currency
77

88
In this task, you create a native function that can convert an amount from a base currency to a target currency.
99

10-
1. Navigate to the `CurrencyConverter.cs` file in the **Plugins** folder
10+
1. Navigate to the `CurrencyConverterPlugin.cs` file in the **Plugins** folder
1111

1212
3. Create a `ConvertAmount` function with the following code:
1313

@@ -58,7 +58,7 @@ In this task, you create a native function that can convert an amount from a bas
5858
1. In the `Program.cs` file, register your plugin and enable auto function calling with the following code:
5959

6060
```c#
61-
kernel.ImportPluginFromType<CurrencyConverter>();
61+
kernel.ImportPluginFromType<CurrencyConverterPlugin>();
6262

6363
OpenAIPromptExecutionSettings openAIPromptExecutionSettings = new()
6464
{

0 commit comments

Comments
 (0)