@@ -20,11 +20,11 @@ public record Custom : IGenerativeConfig
2020 public abstract record OpenAIBase : IGenerativeConfig
2121 {
2222 public string ? BaseURL { get ; set ; }
23- public int ? FrequencyPenaltyProperty { get ; set ; }
24- public int ? MaxTokensProperty { get ; set ; }
25- public int ? PresencePenaltyProperty { get ; set ; }
26- public double ? TemperatureProperty { get ; set ; }
27- public double ? TopPProperty { get ; set ; }
23+ public int ? FrequencyPenalty { get ; set ; }
24+ public int ? MaxTokens { get ; set ; }
25+ public int ? PresencePenalty { get ; set ; }
26+ public double ? Temperature { get ; set ; }
27+ public double ? TopP { get ; set ; }
2828 public abstract string Type { get ; }
2929 }
3030
@@ -68,12 +68,12 @@ public record Cohere : IGenerativeConfig
6868 public const string TypeValue = "generative-cohere" ;
6969 public string Type => TypeValue ;
7070
71- public int ? KProperty { get ; set ; }
71+ public int ? K { get ; set ; }
7272 public string ? Model { get ; set ; }
73- public int ? MaxTokensProperty { get ; set ; }
74- public string ? ReturnLikelihoodsProperty { get ; set ; }
75- public string [ ] ? StopSequencesProperty { get ; set ; }
76- public double ? TemperatureProperty { get ; set ; }
73+ public int ? MaxTokens { get ; set ; }
74+ public string ? ReturnLikelihoods { get ; set ; }
75+ public string [ ] ? StopSequences { get ; set ; }
76+ public double ? Temperature { get ; set ; }
7777 }
7878
7979 public record Databricks : IGenerativeConfig
0 commit comments