import { FinishReason } from "@mistralai/mistralai/models/components";
let value: FinishReason = "stop";
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>