/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 3a574aa9d5a5 */ import * as z from "zod/v4"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * Available options to the prompt_mode argument on the chat completion endpoint. * * @remarks * Values represent high-level intent. Assignment to actual SPs is handled internally. * System prompt may include knowledge cutoff date, model capabilities, tone to use, safety guidelines, etc. */ export const MistralPromptMode = { Reasoning: "reasoning", } as const; /** * Available options to the prompt_mode argument on the chat completion endpoint. * * @remarks * Values represent high-level intent. Assignment to actual SPs is handled internally. * System prompt may include knowledge cutoff date, model capabilities, tone to use, safety guidelines, etc. */ export type MistralPromptMode = OpenEnum; /** @internal */ export const MistralPromptMode$outboundSchema: z.ZodType< string, MistralPromptMode > = openEnums.outboundSchema(MistralPromptMode);