ChatViewMessage
Prop | Type | Description |
---|---|---|
id | ReturnType<typeof crypto.randomUUID> | Message id. |
state | ChatLoadingState | The loading state. |
name | string | Message name. |
error | Error | Error associated to the message. |
Prop | Type | Description |
---|---|---|
id | ReturnType<typeof crypto.randomUUID> | Message id. |
state | ChatLoadingState | The loading state. |
name | string | Message name. |
error | Error | Error associated to the message. |
1type ChatLoadingState =
2 | 'indeterminate'
3 | 'preload'
4 | 'streaming-answer'
5 | 'done'
6 | 'cancelled';