11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import { IsIn, IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class AiChatMessageDto {
|
|
@IsIn(['user', 'assistant'])
|
|
role: 'user' | 'assistant';
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
text: string;
|
|
}
|