UNPKG

scheunemann-interfaces

Version:
6 lines (5 loc) 133 B
import { EChatGptRole } from "../enums/role.enum"; export interface IChatGptMessage { role: EChatGptRole; content: string; }