mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 20:33:38 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
24 lines
816 B
C#
24 lines
816 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AIStudio.Assistants.PromptOptimizer;
|
|
|
|
public sealed class PromptOptimizationRecommendations
|
|
{
|
|
[JsonPropertyName("clarity_and_directness")]
|
|
public string ClarityAndDirectness { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("examples_and_context")]
|
|
public string ExamplesAndContext { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("sequential_steps")]
|
|
public string SequentialSteps { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("structure_with_markers")]
|
|
public string StructureWithMarkers { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("role_definition")]
|
|
public string RoleDefinition { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("language_choice")]
|
|
public string LanguageChoice { get; set; } = string.Empty;
|
|
} |