mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-11 15:24:58 +00:00
5 lines
80 B
TypeScript
5 lines
80 B
TypeScript
export interface GrokMessage {
|
|
role: "user" | "assistant"
|
|
content: string
|
|
}
|