Files
langchain-go/backend/response_struct/quiz.go
T
2026-03-27 19:30:04 +08:00

12 lines
287 B
Go

package response_struct
type Quiz struct {
Questions []Question `json:"questions"`
}
type Question struct {
Question string `json:"question"`
Options []string `json:"options"`
Answer string `json:"answer"`
Explanation string `json:"explanation"`
}