You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/ai/vision/README.md
+37-37Lines changed: 37 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,43 +51,43 @@ The `vision.yml` file is usually kept in the `storage/config` directory (overrid
51
51
52
52
#### Model Options
53
53
54
-
The model `Options` adjust model parameters such as temperature, top-p, and schema constraints when using [Ollama](ollama/README.md) or [OpenAI](openai/README.md):
|`Temperature`|engine default (`0.1` for Ollama) | Controls randomness with a value between `0.01` and `2.0`; not used for OpenAI's GPT-5. |
59
-
|`TopK`|engine default (model-specific)| Limits sampling to the top K tokens to reduce rare or noisy outputs. |
60
-
|`TopP`|engine default (`0.9` for some Ollama label defaults; unset for OpenAI)| Nucleus sampling; keeps the smallest token set whose cumulative probability ≥ `p`. |
61
-
|`MinP`|engine default (unset unless provided)| Drops tokens whose probability mass is below `p`, trimming the long tail. |
62
-
|`TypicalP`|engine default (unset unless provided)| Keeps tokens with typicality under the threshold; combine with TopP/MinP for flow. |
63
-
|`Seed`|random per run (unless set)| Fix for reproducible outputs; unset for more variety between runs.|
64
-
|`RepeatLastN`| engine default (model-specific)| Number of recent tokens considered for repetition penalties. |
65
-
|`RepeatPenalty`| engine default (model-specific)| Multiplier >1 discourages repeating the same tokens or phrases. |
66
-
|`PenalizeNewline`| engine default | Whether to apply repetition penalties to newline tokens. |
67
-
|`PresencePenalty`| engine default (OpenAI-style)| Increases the likelihood of introducing new tokens by penalizing existing ones.|
68
-
|`FrequencyPenalty`| engine default (OpenAI-style)| Penalizes tokens in proportion to their frequency so far. |
The model `Options` adjust model parameters such as temperature, top-p, and schema constraints when using [Ollama](ollama/README.md) or [OpenAI](openai/README.md). Rows are ordered exactly as defined in `vision/model_options.go`.
0 commit comments