Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Before proceeding with feature coding, make sure your development environment is

::: zone pivot="programming-language-csharp"

To add package dependencies from the command-line use the `dotnet` command:
To add package dependencies from the command line use the `dotnet` command:

```powershell
dotnet add package Azure.Identity
Expand Down Expand Up @@ -256,7 +256,7 @@ def get_filepath_for_filename(filename: str) -> str:

::: zone-end

Let's declare the the three content-files described in the previous [Configuration](#configuration) section:
Let's declare the the three content files described in the previous [Configuration](#configuration) section:

::: zone pivot="programming-language-csharp"

Expand Down Expand Up @@ -382,7 +382,7 @@ try
bool isComplete = false;
do
{
// Processing occurrs here
// Processing occurs here
} while (!isComplete);
}
finally
Expand Down Expand Up @@ -425,7 +425,7 @@ finally:

::: zone-end

Now let's capture user input within the previous loop. In this case, empty input will be ignored and the term `EXIT` will signal that the conversation is completed. Valid nput will be added to the _Assistant Thread_ as a _User_ message.
Now let's capture user input within the previous loop. In this case, empty input will be ignored and the term `EXIT` will signal that the conversation is completed. Valid input will be added to the _Assistant Thread_ as a _User_ message.

::: zone pivot="programming-language-csharp"
```csharp
Expand Down