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

# LLM Node

> Calls large language models with optional multimodal inputs (text, image, video).

Calls large language models with optional multimodal inputs (text, image, video).

**Model**

```bash theme={null}
configurable (e.g. moonshotai/Kimi-K2.5)
```

## Inputs

### Required

* **model (STRING)**\
  Identifier of the LLM model used for generation.
* **prompt (STRING)**\
  User input text or instruction sent to the model.

### Optional

* **temperature (FLOAT, default: 1.0)**\
  Controls randomness of output generation (0 = deterministic, 1 = creative).
* **max\_tokens (INT, default: 5120)**\
  Maximum number of tokens the model is allowed to generate.
* **system\_prompt (STRING, default: "You are a helpful AI assistant. Provide direct, concise answers without showing your thinking process.")**\
  Defines model behavior and response style.
* **image\_url (STRING)**\
  Optional image input for vision-capable models.
* **video\_url (STRING)**\
  Optional video input for multimodal understanding.

## Outputs

* **content (STRING)**\
  Generated response text from the language model.
