mirror of
https://github.com/coaidev/coai.git
synced 2025-05-20 05:20:15 +09:00
7 lines
107 B
Go
7 lines
107 B
Go
package api
|
|
|
|
type ChatGPTMessage struct {
|
|
Role string `json:"role"`
|
|
Content string `json:"content"`
|
|
}
|