mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
export class Message {
|
|
content: string
|
|
role: 'user' | 'assistant' = 'user'
|
|
threadId?: string
|
|
|
|
constructor(content: string, role: 'user' | 'assistant' = 'user', threadId?: string) {
|
|
this.content = content
|
|
this.role = role
|
|
this.threadId = threadId
|
|
}
|
|
}
|