Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 374 Bytes

finishreason.md

File metadata and controls

17 lines (11 loc) · 374 Bytes

FinishReason

Example Usage

import { FinishReason } from "@mistralai/mistralai/models/components";

let value: FinishReason = "stop";

Values

This is an open enum. Unrecognized values will be captured as the Unrecognized<string> branded type.

"stop" | "length" | "model_length" | "error" | "tool_calls" | Unrecognized<string>