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

# Camel.configs.atlascloud config

<a id="camel.configs.atlascloud_config" />

<a id="camel.configs.atlascloud_config.AtlasCloudConfig" />

## AtlasCloudConfig

```python theme={"system"}
class AtlasCloudConfig(BaseConfig):
```

Defines the parameters for generating chat completions using OpenAI
compatibility.

Reference: [https://www.atlascloud.ai/docs/en/createChatCompletion](https://www.atlascloud.ai/docs/en/createChatCompletion)

**Parameters:**

* **temperature** (float, optional): Sampling temperature to use, between :obj:`0` and :obj:`2`. Higher values make the output more random, while lower values make it more focused and deterministic. (default: :obj:`None`)
* **top\_p** (float, optional): An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top\_p probability mass. So :obj:`0.1` means only the tokens comprising the top 10% probability mass are considered. (default: :obj:`None`)
* **stream** (bool, optional): If True, partial message deltas will be sent as data-only server-sent events as they become available. (default: :obj:`None`)
* **max\_tokens** (int, optional): The maximum number of tokens to generate in the chat completion. The total length of input tokens and generated tokens is limited by the model's context length. (default: :obj:`None`)
* **repetition\_penalty** (float, optional): Penalty for repeated tokens to prevent redundancy. (default: :obj:`None`)
