11 lines
167 B
Go
11 lines
167 B
Go
|
package dto
|
||
|
|
||
|
type AiReq struct {
|
||
|
Prompt string `json:"prompt"`
|
||
|
}
|
||
|
|
||
|
type AiRes struct {
|
||
|
GroupId string `json:"groupId"`
|
||
|
Completions string `json:"completions"`
|
||
|
}
|