South Korea33B parametersImage + videoReasoning + tools

Explore EXAONE 4.5 33B

Use LG AI Research's popular multimodal model for Korean and English visual reasoning, document analysis, OCR, text generation, and agentic workflows. Use the playground to give EXAONE 4.5 33B a representative input and review its output. Adjust the available settings to shape the result for your task.

Model

LGAI-EXAONE/EXAONE-4.5-33B

Input

Configure your request

The OpenAI-compatible chat messages array. The model’s processor accepts text, image, and video content, plus assistant tool calls and tool-result messages; the documented vLLM configuration permits up to 64 images per prompt.

Optional OpenAI-compatible JSON array of function tools accepted by the model’s chat template.

OpenAI-compatible tool-selection mode.

Documentation

EXAONE 4.5 33B field reference

Use this reference to understand how every field in the playground changes the request sent to LGAI-EXAONE/EXAONE-4.5-33B.

messages

Required

Type: JSON array

The conversation sent to the chat model in chronological order. Each JSON item contains a role and its text content.

tools

Optional

Type: JSON array

Default: None

Defines functions the model is allowed to request, including each function’s name, purpose, and JSON parameter schema. Supplying a tool does not execute it—the application must run the requested function and return its result to the model.

tool_choice

Optional

Type: String

Default: auto

Values: Auto, None, Required

Determines how the model uses the supplied tool definitions. Auto lets it choose between answering and calling a tool, None forbids tool calls, and Required forces a tool call even if the model could answer directly.

stream

Optional

Type: Boolean

Default: Off

Sends small chunks as the model generates them, allowing the interface to display the beginning of a response sooner. It changes delivery timing rather than model quality; disable it when the client needs one complete response object.

Maximum output tokens

Optional

Type: Integer

Default: 32768

Range: 1–131072

Caps the length of the generated response in tokens, which are pieces of words rather than whole words. The model can stop naturally before the limit, but a value that is too low may cut off the answer and a high value can increase latency and cost.

Temperature

Optional

Type: Number

Default: 1

Range: 0–2

Adjusts how strongly the model favors its most likely next token. Lower values produce more focused and repeatable output, while higher values allow less-likely choices and increase variety; it only has an effect when sampling is enabled.

Top P

Optional

Type: Number

Default: 0.95

Range: 0–1

Limits sampling to the smallest set of likely tokens whose probabilities add up to this value. Lower settings make output more focused, while a value near 1 keeps more alternatives available; it only affects sampled generation.

Top K

Optional

Type: Integer

Default: 20

Range: 0–Unbounded

Limits sampling at each step to the specified number of most likely next tokens. Smaller values make output more conservative, while larger values preserve more variety; zero commonly means that this filter is disabled.

Presence penalty

Optional

Type: Number

Default: 1.5

Range: -2–2

Reduces the score of any token once it has appeared, regardless of how many times it was used. Positive values encourage new vocabulary or topics, zero makes no adjustment, and negative values favor staying with existing wording.

frequency_penalty

Optional

Type: Number

Default: 0

Range: -2–2

Reduces the score of a token more each time it has already appeared in the response. Positive values discourage repeated words and phrases, zero makes no adjustment, and negative values encourage repetition.

seed

Optional

Type: Integer

Default: None

Initializes the model’s random-number generator. Reusing the same seed with identical model settings usually reproduces the same output, while changing it explores a different variation; exact reproducibility can still depend on hardware and implementation.

stop

Optional

Type: Text list

Default: None

Supplies one or more literal delimiters that stop generation when matched. The match is sensitive to exact spelling, spacing, and capitalization, so use distinctive sequences that are unlikely to appear naturally in the response.

response_format

Optional

Type: JSON object

Default: None

Chooses between an unrestricted natural-language response and a syntactically valid JSON object. When selecting JSON, explicitly describe the desired keys and mention JSON in the prompt so the model knows what structure to produce.

Enable thinking

Optional

Type: Boolean

Default: On

Controls whether the chat template asks the model to use its deliberate reasoning mode before answering. Enable it for complex analysis, visual reasoning, or planning; disable it for faster direct responses when extended reasoning is unnecessary.