Add dynamic_temperature_low parameter (#5198)
This commit is contained in:
parent
b8a0b3f925
commit
0d07b3a6a1
11 changed files with 30 additions and 88 deletions
|
@ -8,7 +8,8 @@ from pydantic import BaseModel, Field
|
|||
class GenerationOptions(BaseModel):
|
||||
preset: str | None = Field(default=None, description="The name of a file under text-generation-webui/presets (without the .yaml extension). The sampling parameters that get overwritten by this option are the keys in the default_preset() function in modules/presets.py.")
|
||||
min_p: float = 0
|
||||
dynatemp: float = 0
|
||||
dynamic_temperature: bool = False
|
||||
dynamic_temperature_low: float = 0.1
|
||||
top_k: int = 0
|
||||
repetition_penalty: float = 1
|
||||
repetition_penalty_range: int = 1024
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue