Skip to content

Commit

Permalink
style: chat-summary-webapp-react - change label for deployment form i…
Browse files Browse the repository at this point in the history
…nput from Model to Deployment (microsoft#1368)

### Motivation and Context

There are different sets of parameters when using OpenAI vs Azure OpenAI

#### OpenAI

1. OpenAI Key
1. Model (`text-davinci-003`)

#### Azure OpenAI
You can deploy multiple versions of the same model (`gpt-3.5-turbo`)
with different resource throughput. This is why "model" is not unique
enough. Instead of Model you specify Deployment and Endpoint

1. OpenAI Key
1. Deployment
1. Endpoint

The `samples\apps\chat-summary-webapp-react` it was using Model term
which may be misleading

### Description

- samples\apps\chat-summary-webapp-react
    - Change label for Deployment form input from Model to Deployment
  • Loading branch information
mattmazzola authored and name committed Jul 5, 2023
1 parent ec97ace commit 7c6456e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const ServiceConfig: FC<IData> = ({ uri, onConfigComplete }) => {
}}
placeholder="Enter your Azure OpenAI key here"
/>
<Label htmlFor="oaimodel">Model</Label>
<Label htmlFor="oaimodel">Deployment</Label>
<Input
id="aoaideployment"
value={azureOpenAiDeployment}
Expand Down

0 comments on commit 7c6456e

Please sign in to comment.