package
Version:
v1.10.4
Opens a new window with list of versions in this module.
Published: Aug 24, 2023
License: MIT
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type ChatGPTRequest struct {
Model string `json:"model"`
Messages []*Message `json:"messages"`
}
type ChatGPTResponse struct {
ID string `json:"id"`
Object string `json:"object"`
Created int64 `json:"created"`
Choices []Choice `json:"choices"`
}
type Choice struct {
Index int `json:"index"`
Message Message `json:"message"`
FinishReason string `json:"finish_reason"`
}
type Message struct {
Role string `json:"role"`
Content string `json:"content"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.