Skip to content

Commit

Permalink
change azure naming
Browse files Browse the repository at this point in the history
  • Loading branch information
mckaywrigley committed Jan 18, 2024
1 parent d3da5dc commit 5757030
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions components/utility/profile-settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -480,11 +480,11 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<div className="space-y-1">
{!!process.env.NEXT_PUBLIC_AZURE_OPENAI_ENDPOINT ? (
<Label className="text-xs">
Azure OpenAI Endpoint set by admin.
Azure endpoint set by admin.
</Label>
) : (
<>
<Label>Azure OpenAI Endpoint</Label>
<Label>Azure Endpoint</Label>

<Input
placeholder="https://your-endpoint.openai.azure.com"
Expand All @@ -503,11 +503,11 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<div className="space-y-1">
{!!process.env.NEXT_PUBLIC_AZURE_GPT_35_TURBO_ID ? (
<Label className="text-xs">
Azure OpenAI GPT-3.5 Turbo ID set by admin.
Azure GPT-3.5 Turbo deployment name set by admin.
</Label>
) : (
<>
<Label>Azure OpenAI GPT-3.5 Turbo ID</Label>
<Label>Azure GPT-3.5 Turbo Deployment Name</Label>

<Input
placeholder="Azure OpenAI GPT-3.5 Turbo ID"
Expand All @@ -526,11 +526,11 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<div className="space-y-1">
{!!process.env.NEXT_PUBLIC_AZURE_GPT_45_TURBO_ID ? (
<Label className="text-xs">
Azure OpenAI GPT-4.5 Turbo ID set by admin.
Azure GPT-4.5 Turbo deployment name set by admin.
</Label>
) : (
<>
<Label>Azure OpenAI GPT-4.5 Turbo ID</Label>
<Label>Azure GPT-4.5 Turbo Deployment Name</Label>

<Input
placeholder="Azure OpenAI GPT-4.5 Turbo ID"
Expand All @@ -549,11 +549,11 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<div className="space-y-1">
{!!process.env.NEXT_PUBLIC_AZURE_GPT_45_VISION_ID ? (
<Label className="text-xs">
Azure OpenAI GPT-4.5 Vision ID set by admin.
Azure GPT-4.5 Vision deployment name set by admin.
</Label>
) : (
<>
<Label>Azure OpenAI GPT-4.5 Vision ID</Label>
<Label>Azure GPT-4.5 Vision Deployment Name</Label>

<Input
placeholder="Azure OpenAI GPT-4.5 Vision ID"
Expand All @@ -572,11 +572,11 @@ export const ProfileSettings: FC<ProfileSettingsProps> = ({}) => {
<div className="space-y-1">
{!!process.env.NEXT_PUBLIC_AZURE_EMBEDDINGS_ID ? (
<Label className="text-xs">
Azure OpenAI Embeddings ID set by admin.
Azure Embeddings deployment name set by admin.
</Label>
) : (
<>
<Label>Azure OpenAI Embeddings ID</Label>
<Label>Azure Embeddings Deployment Name</Label>

<Input
placeholder="Azure OpenAI Embeddings ID"
Expand Down

0 comments on commit 5757030

Please sign in to comment.