> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter-d02e98a0-mintlify-7021d5f4.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Parameter - Go SDK

> Parameter type definition

<Warning>
  The Go SDK and docs are currently in beta.
  Report issues on [GitHub](https://github.com/OpenRouterTeam/go-sdk/issues).
</Warning>

## Example Usage

```go lines theme={null}
import (
	"github.com/OpenRouterTeam/go-sdk/models/components"
)

value := components.ParameterTemperature

// Open enum: custom values can be created with a direct type cast
custom := components.Parameter("custom_value")
```

## Values

| Name                           | Value                   |
| ------------------------------ | ----------------------- |
| `ParameterTemperature`         | temperature             |
| `ParameterTopP`                | top\_p                  |
| `ParameterTopK`                | top\_k                  |
| `ParameterMinP`                | min\_p                  |
| `ParameterTopA`                | top\_a                  |
| `ParameterFrequencyPenalty`    | frequency\_penalty      |
| `ParameterPresencePenalty`     | presence\_penalty       |
| `ParameterRepetitionPenalty`   | repetition\_penalty     |
| `ParameterMaxTokens`           | max\_tokens             |
| `ParameterMaxCompletionTokens` | max\_completion\_tokens |
| `ParameterLogitBias`           | logit\_bias             |
| `ParameterLogprobs`            | logprobs                |
| `ParameterTopLogprobs`         | top\_logprobs           |
| `ParameterSeed`                | seed                    |
| `ParameterResponseFormat`      | response\_format        |
| `ParameterStructuredOutputs`   | structured\_outputs     |
| `ParameterStop`                | stop                    |
| `ParameterTools`               | tools                   |
| `ParameterToolChoice`          | tool\_choice            |
| `ParameterParallelToolCalls`   | parallel\_tool\_calls   |
| `ParameterIncludeReasoning`    | include\_reasoning      |
| `ParameterReasoning`           | reasoning               |
| `ParameterReasoningEffort`     | reasoning\_effort       |
| `ParameterWebSearchOptions`    | web\_search\_options    |
| `ParameterVerbosity`           | verbosity               |
