sashabaranov / go-openai

OpenAI ChatGPT, GPT-3, GPT-4, DALL·E, Whisper API wrapper for Go
Apache License 2.0
9.25k stars 1.42k forks source link

Completion API: add Store and Metadata parameters #878

Closed smackcrane closed 1 month ago

smackcrane commented 1 month ago

Describe the change The store parameter recently introduced by OpenAI has been added to CompletionRequest already in #870 ; it is here added to ChatCompletionRequest, and the related metadata parameter added to both.

Provide OpenAI documentation link https://platform.openai.com/docs/api-reference/chat/create#chat-create-store https://platform.openai.com/docs/api-reference/chat/create#chat-create-metadata

Describe your solution Simply adds new fields to the API call objects.

Tests No new tests added.

(Partly addresses) Issue: #872