JapanEnterpriseAPIJapanese

Explore cotomi v3

Use NEC's Japanese enterprise model for business conversation, document analysis, summarization, and secure organizational workflows. Use the playground to give cotomi v3 a representative input and review its output. Adjust the available settings to shape the result for your task.

Model

cotomi-v3

Input

Configure your request

Passed directly as the hosted chat-completions messages array.

Documentation

cotomi v3 field reference

Use this reference to understand how every field in the playground changes the request sent to cotomi-v3.

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.

Stream response

Optional

Type: Boolean

Default: On

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.

Temperature

Optional

Type: Number

Default: 0.7

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.9

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.

Maximum output tokens

Optional

Type: Integer

Default: 2048

Range: 1–Unbounded

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.

Presence penalty

Optional

Type: Number

Default: 0

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

Range: 0–Unbounded

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 sequences

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: String

Default: text

Values: Text, JSON object

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.