goopenai
v3.0.5
[已棄用] 此程式碼不再維護。請使用官方Azure Open AI客戶端:https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/ai/azopenai
這是 OpenAI API 的 Go 客戶端程式庫。
它實現了文檔中描述的方法:https://platform.openai.com/docs/api-reference/introduction
實作的方法可以在 Interface.go 檔案中找到。
go get github.com/franciscoescher/goopenai/v3
首先,您需要使用 api 金鑰和組織 ID 建立一個客戶端。
client := goopenai.NewClient(apiKey, organization)
然後就可以使用客戶端呼叫api了。
例子:
package main
import (
"context"
"fmt"
"github.com/franciscoescher/goopenai"
)
func main() {
apiKey := os.Getenv("API_KEY")
organization := os.Getenv("API_ORG")
client := goopenai.NewClient(apiKey, organization)
r := &goopenai.CreateChatCompletionsRequest{
Model: "gpt-3.5-turbo",
Messages: []goopenai.Message{
{
Role: "user",
Content: "Say this is a test!",
},
},
Temperature: 0.7,
}
completions, err := client.CreateChatCompletions(context.Background(), r)
if err != nil {
panic(err)
}
fmt.Println(completions)
}
使用以下命令運行此程式碼:
API_KEY=<your-api-key> API_ORG=<your-org-id> go run .
該庫不完整且未經過充分測試。
請隨意貢獻。