Skip to content

Commit

Permalink
update: AOAI version (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuki-komori authored Oct 26, 2023
1 parent eda8a20 commit e8c2f9e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion 6.azureopenai-landing-zone-accelerator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Azure OpenAIの利用申請を行い、Azure OpenAIがサブスクリプショ
| パラメータ名 | 投入する値 | 値の例 |
|--|--|--|
|environmentName|デプロイ時に指定するため編集不要です|-|
|location|デプロイ時に指定するため編集不要です|-|
|location|デプロイ時に指定するため編集不要です|japaneast|
|corsOriginUrl|認証を行うシングルページアプリ(SPA)のドメインを指定します。シングルページアプリケーションのドメインが確定していない場合、デフォルトの"*"を指定することも可能ですが、確定次第具体的なドメインを指定することをおすすめします |*, example.com, yourapp.azurewebsites.net など|
|audienceAppId|JWTを取得する対象となる登録アプリの登録アプリID|登録アプリID(UUID)|
|scopeName|スコープ名|chat|
Expand Down
23 changes: 10 additions & 13 deletions 6.azureopenai-landing-zone-accelerator/infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ param aoaiCapacity int = 10

// Please provide these parameters if you need to create a new Azure OpenAI resource
param openAiSkuName string = 'S0'
param gptDeploymentName string = 'davinci'
param gptModelName string = 'text-davinci-003'
param chatGptDeploymentName string = 'chatgpt'
param chatGptModelName string = 'gpt-35-turbo'
param openAiGpt35TurboDeploymentName string = 'gpt-35-turbo-deploy'
param openAiGpt35Turbo16kDeploymentName string = 'gpt-35-turbo-16k-deploy'

// params for api policy settings
@description('CORSオリジンとして許可するドメインを指定してください(*でも可)')
Expand Down Expand Up @@ -76,28 +74,27 @@ module openAi 'core/ai/cognitiveservices.bicep' = {
}
deployments: [
{
name: gptDeploymentName
name: openAiGpt35TurboDeploymentName
model: {
format: 'OpenAI'
name: gptModelName
version: '1'
name: 'gpt-35-turbo'
version: '0613'
}
sku: {
name: 'Standard'
capacity: aoaiCapacity
capacity: 120
}
}

{
name: chatGptDeploymentName
name: openAiGpt35Turbo16kDeploymentName
model: {
format: 'OpenAI'
name: chatGptModelName
version: '0301'
name: 'gpt-35-turbo-16k'
version: '0613'
}
sku: {
name: 'Standard'
capacity: aoaiCapacity
capacity: 120
}
}
]
Expand Down

0 comments on commit e8c2f9e

Please sign in to comment.