Each skill file contains:
#+begin_src yaml
-prompt: "Full system prompt text here"
-temperature: 0.8 # Optional
-top_p: 0.9 # Optional
-repeat_penalty: 1.1 # Optional
+ prompt: "Full system prompt text here"
+ temperature: 0.8 # Optional
+ top_p: 0.9 # Optional
+ top_k: 0.5 # Optional
+ min_p: 0.5 # Optional
+ repeat_penalty: 1.1 # Optional
#+end_src
The system prompt must contain *<TASK-FILE>* which gets replaced with
/**
* Skill-specific top-p value overriding model/global defaults.
*/
+ @JsonProperty("top_p")
private Float topP;
@JsonProperty("top_k")
/**
* Skill-specific repeat penalty value overriding model/global defaults.
*/
+ @JsonProperty("repeat_penalty")
private Float repeatPenalty;
}
\ No newline at end of file