mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
20 lines
320 B
TypeScript
20 lines
320 B
TypeScript
import { Field, ObjectType } from 'type-graphql'
|
|
|
|
import { Message } from '@/apis/openai/model/Message'
|
|
|
|
@ObjectType()
|
|
export class ChatGptMessage {
|
|
@Field()
|
|
content: string
|
|
|
|
@Field()
|
|
role: string
|
|
|
|
@Field()
|
|
threadId: string
|
|
|
|
public constructor(data: Partial<Message>) {
|
|
Object.assign(this, data)
|
|
}
|
|
}
|