/** * This file was auto-generated by Fern from our API Definition. */ /** * * `SYSTEM` - System * * `ASSISTANT` - Assistant * * `USER` - User * * `FUNCTION` - Function */ export type ChatMessageRole = "SYSTEM" | "ASSISTANT" | "USER" | "FUNCTION"; export declare const ChatMessageRole: { readonly System: "SYSTEM"; readonly Assistant: "ASSISTANT"; readonly User: "USER"; readonly Function: "FUNCTION"; };