mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
8 lines
255 B
Go
8 lines
255 B
Go
package model
|
|
|
|
type Stream struct {
|
|
Model
|
|
Path string `json:"path"`
|
|
Advanced bool `json:"advanced"`
|
|
ChatGPTMessages ChatGPTCompletionMessages `json:"chatgpt_messages" gorm:"serializer:json"`
|
|
}
|