> ## Documentation Index
> Fetch the complete documentation index at: https://docs.geekai.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Temperature Settings

GeekAI AI model proxy service supports adjusting the creativity of model-generated text through the temperature parameter. Higher temperature values result in more creative text, while lower temperature values produce more conservative text.

Generally, literary tasks benefit from higher temperature settings, while mathematical tasks perform better with lower temperature settings. Additionally, different platforms have varying temperature parameter ranges - some use \[0-1], like Claude, while others use \[0-2], such as OpenAI and DeepSeek:

<div style={{ width: '100%', overflowX: 'auto' }}>
  <table style={{ width: '100%', borderCollapse: 'collapse', tableLayout: 'fixed' }}>
    <thead>
      <tr>
        <th style={{ border: '1px solid #ccc', padding: '10px',  }}>Scenario</th>
        <th style={{ border: '1px solid #ccc', padding: '10px', width: '42%' }}>Recommended Value for \[0-1] Range</th>
        <th style={{ border: '1px solid #ccc', padding: '10px',  width: '42%'}}>Recommended Value for \[0-2] Range</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>Code Generation/Math Problem Solving</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>0</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>0</td>
      </tr>

      <tr>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>Data Extraction/Analysis</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>0.5</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>1.0</td>
      </tr>

      <tr>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>General Conversation</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>0.65</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>1.3</td>
      </tr>

      <tr>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>Translation Tasks</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>0.5</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>1.3</td>
      </tr>

      <tr>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>Creative Writing/Poetry</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>0.75</td>
        <td style={{ border: '1px solid #ccc', padding: '8px' }}>1.5</td>
      </tr>
    </tbody>
  </table>
</div>

* AI platforms with temperature range \[0-1]: Claude, Cohere, Zhipu AI, Ernie, Kimi, Doubao, Baichuan, Mistral, MiniMax
* AI platforms with temperature range \[0-2]: OpenAI, DeepSeek, Gemini, Qwen, Hunyuan, lingyi, Spark, Microsoft Phi, Grok, Llama, Nova

Some platforms, such as Wenxin Yiyan, do not accept a temperature value of 0. In these cases, you can set the corresponding zero value to 0.1.

Reasoning models can automatically determine the appropriate temperature value based on the question, so most reasoning models do not support temperature parameters.
