Document the "preset" option in the API

This commit is contained in:
oobabooga 2023-11-07 08:23:17 -08:00
parent b0b999dd68
commit 48c9c31440

View file

@ -6,7 +6,7 @@ from pydantic import BaseModel, Field
class GenerationOptions(BaseModel):
preset: str | None = None
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
top_k: int = 0
repetition_penalty: float = 1