mirror of
https://github.com/openai/openai-go.git
synced 2026-04-01 00:57:11 +09:00
121 lines
3.8 KiB
Go
121 lines
3.8 KiB
Go
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
|
|
package openai_test
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"errors"
|
|
"io"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/openai/openai-go/v3"
|
|
"github.com/openai/openai-go/v3/internal/testutil"
|
|
"github.com/openai/openai-go/v3/option"
|
|
)
|
|
|
|
func TestImageNewVariationWithOptionalParams(t *testing.T) {
|
|
baseURL := "http://localhost:4010"
|
|
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
|
|
baseURL = envURL
|
|
}
|
|
if !testutil.CheckTestServer(t, baseURL) {
|
|
return
|
|
}
|
|
client := openai.NewClient(
|
|
option.WithBaseURL(baseURL),
|
|
option.WithAPIKey("My API Key"),
|
|
)
|
|
_, err := client.Images.NewVariation(context.TODO(), openai.ImageNewVariationParams{
|
|
Image: io.Reader(bytes.NewBuffer([]byte("Example data"))),
|
|
Model: openai.ImageModelGPTImage1_5,
|
|
N: openai.Int(1),
|
|
ResponseFormat: openai.ImageNewVariationParamsResponseFormatURL,
|
|
Size: openai.ImageNewVariationParamsSize1024x1024,
|
|
User: openai.String("user-1234"),
|
|
})
|
|
if err != nil {
|
|
var apierr *openai.Error
|
|
if errors.As(err, &apierr) {
|
|
t.Log(string(apierr.DumpRequest(true)))
|
|
}
|
|
t.Fatalf("err should be nil: %s", err.Error())
|
|
}
|
|
}
|
|
|
|
func TestImageEditWithOptionalParams(t *testing.T) {
|
|
baseURL := "http://localhost:4010"
|
|
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
|
|
baseURL = envURL
|
|
}
|
|
if !testutil.CheckTestServer(t, baseURL) {
|
|
return
|
|
}
|
|
client := openai.NewClient(
|
|
option.WithBaseURL(baseURL),
|
|
option.WithAPIKey("My API Key"),
|
|
)
|
|
_, err := client.Images.Edit(context.TODO(), openai.ImageEditParams{
|
|
Image: openai.ImageEditParamsImageUnion{
|
|
OfFile: io.Reader(bytes.NewBuffer([]byte("Example data"))),
|
|
},
|
|
Prompt: "A cute baby sea otter wearing a beret",
|
|
Background: openai.ImageEditParamsBackgroundTransparent,
|
|
InputFidelity: openai.ImageEditParamsInputFidelityHigh,
|
|
Mask: io.Reader(bytes.NewBuffer([]byte("Example data"))),
|
|
Model: openai.ImageModelGPTImage1_5,
|
|
N: openai.Int(1),
|
|
OutputCompression: openai.Int(100),
|
|
OutputFormat: openai.ImageEditParamsOutputFormatPNG,
|
|
PartialImages: openai.Int(1),
|
|
Quality: openai.ImageEditParamsQualityHigh,
|
|
ResponseFormat: openai.ImageEditParamsResponseFormatURL,
|
|
Size: openai.ImageEditParamsSize1024x1024,
|
|
User: openai.String("user-1234"),
|
|
})
|
|
if err != nil {
|
|
var apierr *openai.Error
|
|
if errors.As(err, &apierr) {
|
|
t.Log(string(apierr.DumpRequest(true)))
|
|
}
|
|
t.Fatalf("err should be nil: %s", err.Error())
|
|
}
|
|
}
|
|
|
|
func TestImageGenerateWithOptionalParams(t *testing.T) {
|
|
baseURL := "http://localhost:4010"
|
|
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
|
|
baseURL = envURL
|
|
}
|
|
if !testutil.CheckTestServer(t, baseURL) {
|
|
return
|
|
}
|
|
client := openai.NewClient(
|
|
option.WithBaseURL(baseURL),
|
|
option.WithAPIKey("My API Key"),
|
|
)
|
|
_, err := client.Images.Generate(context.TODO(), openai.ImageGenerateParams{
|
|
Prompt: "A cute baby sea otter",
|
|
Background: openai.ImageGenerateParamsBackgroundTransparent,
|
|
Model: openai.ImageModelGPTImage1_5,
|
|
Moderation: openai.ImageGenerateParamsModerationLow,
|
|
N: openai.Int(1),
|
|
OutputCompression: openai.Int(100),
|
|
OutputFormat: openai.ImageGenerateParamsOutputFormatPNG,
|
|
PartialImages: openai.Int(1),
|
|
Quality: openai.ImageGenerateParamsQualityMedium,
|
|
ResponseFormat: openai.ImageGenerateParamsResponseFormatURL,
|
|
Size: openai.ImageGenerateParamsSize1024x1024,
|
|
Style: openai.ImageGenerateParamsStyleVivid,
|
|
User: openai.String("user-1234"),
|
|
})
|
|
if err != nil {
|
|
var apierr *openai.Error
|
|
if errors.As(err, &apierr) {
|
|
t.Log(string(apierr.DumpRequest(true)))
|
|
}
|
|
t.Fatalf("err should be nil: %s", err.Error())
|
|
}
|
|
}
|