Skip to content

fix typos #64

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
Feb 23, 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
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ MEAIを使用して関数を呼び出すには、いくつかの設定手順が
return $"The weather is {temperature} degrees C and {conditions}.";
}

```
```

Comment on lines +135 to 136
Copy link
Preview

Copilot AI Feb 23, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The closing code fence here is indented 4 spaces while its corresponding opening fence (e.g. line 139) is indented 6 spaces. Please align the indentations for consistent Markdown rendering.

Suggested change
```
```

Copilot uses AI. Check for mistakes.

2. 次に、MEAIに利用可能な関数を指定するための `ChatOptions` オブジェクトを作成します。

Expand All @@ -143,7 +143,7 @@ MEAIを使用して関数を呼び出すには、いくつかの設定手順が
Tools = [AIFunctionFactory.Create(GetTheWeather)]
};

```
```

3. `IChatClient` オブジェクトをインスタンス化する際に、関数呼び出しを使用することを指定します。

Expand Down