Skip to content

Fix markup identation #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2025
Merged
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
4 changes: 2 additions & 2 deletions 03-CoreGenerativeAITechniques/01-lm-completions-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ There are a couple of setup steps you need to take in order to call functions wi
return $"The weather is {temperature} degrees C and {conditions}.";
}

```
```

1. Next we're going to create a `ChatOptions` object that will tell MEAI which functions are available to it.

Expand All @@ -143,7 +143,7 @@ There are a couple of setup steps you need to take in order to call functions wi
Tools = [AIFunctionFactory.Create(GetTheWeather)]
};

```
```

1. When we instantiate the `IChatClient` object we'll want to specify that we'll be using function invocation.

Expand Down
Loading