Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Chat ¶
func Chat(ctx context.Context, in *ChatRequest) (<-chan *ChatResponse, <-chan error)
Chat creates a chat request to ChatGPT.
Types ¶
type ChatMessage ¶
type ChatRequest ¶
type ChatRequest struct { Model string `json:"model,omitempty"` Message []ChatMessage `json:"messages"` Temperature float64 `json:"temperature,omitempty"` TopP float64 `json:"top_p,omitempty"` N int `json:"n,omitempty"` Stream bool `json:"stream,omitempty"` Stop []string `json:"stop,omitempty"` MaxTokens int `json:"max_tokens,omitempty"` PresencePenalty float64 `json:"presence_penalty,omitempty"` FrequencyPenalty float64 `json:"frequency_penalty,omitempty"` }
type ChatResponse ¶
type ChatResponse struct { ID string `json:"id"` Object string `json:"object"` Created int64 `json:"created"` Choices []struct { Index int `json:"index"` Delta ChatMessage `json:"delta"` Message ChatMessage `json:"message"` FinishReason string `json:"finish_reason"` } `json:"choices"` Usage struct { PromptTokens int64 `json:"prompt_tokens"` CompletionTokens int64 `json:"completion_tokens"` TotalTokens int64 `json:"total_tokens"` } `json:"usage"` }
type CompletionRequest ¶
type CompletionRequest struct { Model string `json:"model,omitempty"` Prompt string `json:"prompt,omitempty"` Suffix string `json:"suffix,omitempty"` MaxTokens int `json:"max_tokens,omitempty"` Temperature float64 `json:"temperature,omitempty"` TopP float64 `json:"top_p,omitempty"` N int `json:"n,omitempty"` Stream bool `json:"stream,omitempty"` LogProbs int `json:"logprobs,omitempty"` Echo bool `json:"echo,omitempty"` Stop string `json:"stop,omitempty"` PresencePenalty float64 `json:"presence_penalty,omitempty"` FrequencyPenalty float64 `json:"frequency_penalty,omitempty"` BestOf int `json:"best_of,omitempty"` }
type CompletionResponse ¶
type CompletionResponse struct { ID string `json:"id"` Object string `json:"object"` Created int64 `json:"created"` Model string `json:"model"` Choices []struct { Text string `json:"text"` Index int `json:"index"` LogProbs int `json:"logprobs"` FinishReason string `json:"finish_reason"` } `json:"choices"` Usage struct { PromptTokens int64 `json:"prompt_tokens"` CompletionTokens int64 `json:"completion_tokens"` TotalTokens int64 `json:"total_tokens"` } `json:"usage"` }
func Completion ¶
func Completion(ctx context.Context, url string, in *CompletionRequest) (*CompletionResponse, error)
Completion completes the input text based on the prompt.
See: https://platform.openai.com/docs/api-reference/completions
type EditOutput ¶
type EditRequest ¶
type EditResponse ¶
type EditResponse struct { Object string `json:"object"` Created int64 `json:"created"` Choices []struct { Text string `json:"text"` Index int `json:"index"` } `json:"choices"` Usage struct { PromptTokens int64 `json:"prompt_tokens"` CompletionTokens int64 `json:"completion_tokens"` TotalTokens int64 `json:"total_tokens"` } `json:"usage"` }
func Edit ¶
func Edit(ctx context.Context, in *EditRequest) (*EditResponse, error)
Edit edits the input text based on the prompt.
Recommended model is "text-davinci-edit-001". See: https://platform.openai.com/docs/api-reference/edits
Click to show internal directories.
Click to hide internal directories.