Skip to content
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

Fixing a couple of minor label typos #21

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ public class GetTranslationIssuesRequest
[Display("Additional prompt")]
public string? AdditionalPrompt { get; set; }

[Display("Source langauge")]
[Display("Source language")]
public string? SourceLanguage { get; set; }

[Display("Target langauge")]
[Display("Target language")]
public string? TargetLanguage { get; set; }

[Display("Maximum tokens")]
Expand All @@ -30,4 +30,4 @@ public class GetTranslationIssuesRequest

[Display("Target audience")]
public string? TargetAudience { get; set; }
}
}
2 changes: 1 addition & 1 deletion Apps.AzueOpenAI/Models/Responses/Chat/MqmAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class MqmAnalysis
[JsonProperty("audience_appropriateness")]
public int AudienceAppropriateness { get; set; }

[Display("Design AndMarkup")]
[Display("Design And Markup")]
[JsonProperty("design_and_markup")]
public int DesignAndMarkup { get; set; }

Expand Down