diff --git a/04-prompt-engineering-fundamentals/translations/ja-jp/README.md b/04-prompt-engineering-fundamentals/translations/ja-jp/README.md index 25ee4712f..3914e18bf 100644 --- a/04-prompt-engineering-fundamentals/translations/ja-jp/README.md +++ b/04-prompt-engineering-fundamentals/translations/ja-jp/README.md @@ -46,15 +46,14 @@ _生成系 AI_ は、ユーザーからの依頼に対して、テキスト、 これらは、ほんの一例です。教育専門家から厳選された、オープンソースのプロンプト・ライブラリ「[Prompts For Education](https://github.com/microsoft/prompts-for-edu/tree/main?WT.mc_id=academic-105485-yoterada)」を確認し、さらに広い視野で可能性を探ってみてください! _サンドボックスでそれらのプロンプトを試しに実行したり、OpenAI Playground で試してどのような結果が出力されるか試してください!_ - ## プロンプト・エンジニアリングとは何ですか? @@ -168,12 +167,12 @@ GitHub Copilotは「AI ペア・プログラマー」として機能し、開発 ## プロンプトの組み立て @@ -294,13 +293,13 @@ response = openai.ChatCompletion.create( ## プロンプト作成のベストプラクティス @@ -336,13 +335,13 @@ Illustrate it with some exercises. ## 課題 @@ -371,7 +370,7 @@ _このため、このレッスンにはコードの解答例は含まれてい ## 知識チェック diff --git a/11-integrating-with-function-calling/translations/ja-jp/README.md b/11-integrating-with-function-calling/translations/ja-jp/README.md index 45bd207e6..40d2876fc 100644 --- a/11-integrating-with-function-calling/translations/ja-jp/README.md +++ b/11-integrating-with-function-calling/translations/ja-jp/README.md @@ -327,7 +327,6 @@ LLM からフォーマットされた応答をテストした後、これをア いま、`functions` 変数とそれに対応する Python 関数を作成しましたが、実際の Python 関数を呼び出すために、これら 2 つをマッピングした内容を、LLM に指示するにはどうすればよいでしょうか? -1. To see if we need to call a Python function, we need to look into the LLM response and see if `function_call` is part of it and call the pointed out function. Here's how you can make the mentioned check below: 1. Python 関数を呼び出す必要があるかどうかを確認するためには、LLM からの応答を調べ、 `function_call` が含まれているかを確認し、指摘された関数を呼び出す必要があります。以下のようにしてチェックを行います。 ```python