Skip to content

Update README.md (Typo "Azure Open AI"→"Azure OpenAI") #733

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
Apr 14, 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
6 changes: 3 additions & 3 deletions 06-text-generation-apps/translations/ja-jp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ pip install openai
下記の手順に従い操作を行なってください:

- Azure のアカウントを作成します。[https://azure.microsoft.com/free/](https://azure.microsoft.com/free/?WT.mc_id=academic-105485-yoterada)
- Azure Open AI へのアクセス権限を取得します。[https://learn.microsoft.com/azure/ai-services/openai/overview#how-do-i-get-access-to-azure-openai](https://learn.microsoft.com/azure/ai-services/openai/overview#how-do-i-get-access-to-azure-openai?WT.mc_id=academic-105485-yoterada) からアクセス申請を提出します
- Azure OpenAI へのアクセス権限を取得します。[https://learn.microsoft.com/azure/ai-services/openai/overview#how-do-i-get-access-to-azure-openai](https://learn.microsoft.com/azure/ai-services/openai/overview#how-do-i-get-access-to-azure-openai?WT.mc_id=academic-105485-yoterada) からアクセス申請を提出します

> [!NOTE]
> 本記事の執筆時には、Azure Open AI へのアクセスを申請する必要があります。
> 本記事の執筆時には、Azure OpenAI へのアクセスを申請する必要があります。

- Python をインストールします。 <https://www.python.org/>
- Azure OpenAI Service リソースを作成します。[リソースの作成方法](https://learn.microsoft.com/azure/ai-services/openai/how-to/create-resource?pivots=web-portal?WT.mc_id=academic-105485-yoterada)については、こちらのガイドをご参照ください。
Expand Down Expand Up @@ -122,7 +122,7 @@ openai.api_base = os.getenv("API_BASE")

上記は、それぞれ下記の設定を行っています:

- `api_type`を`azure`に設定します。これにより、ライブラリは OpenAI ではなく Azure Open AI に接続します。
- `api_type`を`azure`に設定します。これにより、ライブラリは OpenAI ではなく Azure OpenAI に接続します。
- `api_key`は、Azure Portal で取得した API キーを設定します。
- `api_version`は、使用する API のバージョンです。執筆時点での最新バージョンは`2023-05-15`です。
- `api_base` は API のエンドポイントです。これは、Azure Portal の API キーの下側に記載されています。
Expand Down
Loading