> ## 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.models.moonshot model

<a id="camel.models.moonshot_model" />

<a id="camel.models.moonshot_model.MoonshotModel" />

## MoonshotModel

```python theme={"system"}
class MoonshotModel(OpenAICompatibleModel):
```

Moonshot API in a unified OpenAICompatibleModel interface.

**Parameters:**

* **model\_type** (Union\[ModelType, str]): Model for which a backend is created, one of Moonshot series.
* **model\_config\_dict** (Optional\[Dict\[str, Any]], optional): A dictionary that will be fed into :obj:`openai.ChatCompletion.create()`. If :obj:`None`, :obj:`MoonshotConfig().as_dict()` will be used. (default: :obj:`None`)
* **api\_key** (Optional\[str], optional): The API key for authenticating with the Moonshot service. (default: :obj:`None`)
* **url** (Optional\[str], optional): The url to the Moonshot service. For Chinese users, use :obj:`https://api.moonshot.cn/v1`. For overseas users, the default endpoint will be used. (default: :obj:`https://api.moonshot.ai/v1`)
* **token\_counter** (Optional\[BaseTokenCounter], optional): Token counter to use for the model. If not provided, :obj:`OpenAITokenCounter( ModelType.GPT_4)` will be used. (default: :obj:`None`)
* **timeout** (Optional\[float], optional): The timeout value in seconds for API calls. If not provided, will fall back to the MODEL\_TIMEOUT environment variable or default to 180 seconds. (default: :obj:`None`)
* **max\_retries** (int, optional): Maximum number of retries for API calls. (default: :obj:`3`) \*\*kwargs (Any): Additional arguments to pass to the client initialization.

<a id="camel.models.moonshot_model.MoonshotModel.__init__" />

### **init**

```python theme={"system"}
def __init__(
    self,
    model_type: Union[ModelType, str],
    model_config_dict: Optional[Dict[str, Any]] = None,
    api_key: Optional[str] = None,
    url: Optional[str] = None,
    token_counter: Optional[BaseTokenCounter] = None,
    timeout: Optional[float] = None,
    max_retries: int = 3,
    **kwargs: Any
):
```

<a id="camel.models.moonshot_model.MoonshotModel._prepare_request" />

### \_prepare\_request

```python theme={"system"}
def _prepare_request(
    self,
    messages: List[OpenAIMessage],
    response_format: Optional[Type[BaseModel]] = None,
    tools: Optional[List[Dict[str, Any]]] = None
):
```

Prepare the request configuration for Moonshot API.

**Parameters:**

* **messages** (List\[OpenAIMessage]): Message list with the chat history in OpenAI API format.
* **response\_format** (Optional\[Type\[BaseModel]]): The format of the response.
* **tools** (Optional\[List\[Dict\[str, Any]]]): The schema of the tools to use for the request.

**Returns:**

Dict\[str, Any]: The prepared request configuration.

<a id="camel.models.moonshot_model.MoonshotModel._clean_tool_schemas" />

### \_clean\_tool\_schemas

```python theme={"system"}
def _clean_tool_schemas(self, tools: List[Dict[str, Any]]):
```

Clean tool schemas to remove null types for Moonshot compatibility.

Moonshot API doesn't accept `{"type": "null"}` in anyOf schemas.
This method removes null type definitions from parameters.

**Parameters:**

* **tools** (List\[Dict\[str, Any]]): Original tool schemas.

**Returns:**

List\[Dict\[str, Any]]: Cleaned tool schemas.
