mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-11 07:14:10 +00:00
13 lines
429 B
C#
13 lines
429 B
C#
namespace skills;
|
|
public class SemanticFunctionConfig
|
|
{
|
|
public string PromptTemplate { get; set; }
|
|
public string Name { get; set; }
|
|
public string SkillName { get; set; }
|
|
public string Description { get; set; }
|
|
public int MaxTokens { get; set; }
|
|
public double Temperature { get; set; }
|
|
public double TopP { get; set; }
|
|
public double PPenalty { get; set; }
|
|
public double FPenalty { get; set; }
|
|
} |