mirror of
https://github.com/openai/openai-go.git
synced 2026-04-01 00:57:11 +09:00
138 lines
4.8 KiB
Go
138 lines
4.8 KiB
Go
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
|
|
package openai
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"slices"
|
|
|
|
"github.com/openai/openai-go/v3/internal/apijson"
|
|
"github.com/openai/openai-go/v3/internal/requestconfig"
|
|
"github.com/openai/openai-go/v3/option"
|
|
"github.com/openai/openai-go/v3/packages/pagination"
|
|
"github.com/openai/openai-go/v3/packages/respjson"
|
|
"github.com/openai/openai-go/v3/shared/constant"
|
|
)
|
|
|
|
// List and describe the various models available in the API.
|
|
//
|
|
// ModelService contains methods and other services that help with interacting with
|
|
// the openai API.
|
|
//
|
|
// Note, unlike clients, this service does not read variables from the environment
|
|
// automatically. You should not instantiate this service directly, and instead use
|
|
// the [NewModelService] method instead.
|
|
type ModelService struct {
|
|
Options []option.RequestOption
|
|
}
|
|
|
|
// NewModelService generates a new service that applies the given options to each
|
|
// request. These options are applied after the parent client's options (if there
|
|
// is one), and before any request-specific options.
|
|
func NewModelService(opts ...option.RequestOption) (r ModelService) {
|
|
r = ModelService{}
|
|
r.Options = opts
|
|
return
|
|
}
|
|
|
|
// Retrieves a model instance, providing basic information about the model such as
|
|
// the owner and permissioning.
|
|
func (r *ModelService) Get(ctx context.Context, model string, opts ...option.RequestOption) (res *Model, err error) {
|
|
opts = slices.Concat(r.Options, opts)
|
|
if model == "" {
|
|
err = errors.New("missing required model parameter")
|
|
return nil, err
|
|
}
|
|
path := fmt.Sprintf("models/%s", model)
|
|
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
|
|
return res, err
|
|
}
|
|
|
|
// Lists the currently available models, and provides basic information about each
|
|
// one such as the owner and availability.
|
|
func (r *ModelService) List(ctx context.Context, opts ...option.RequestOption) (res *pagination.Page[Model], err error) {
|
|
var raw *http.Response
|
|
opts = slices.Concat(r.Options, opts)
|
|
opts = append([]option.RequestOption{option.WithResponseInto(&raw)}, opts...)
|
|
path := "models"
|
|
cfg, err := requestconfig.NewRequestConfig(ctx, http.MethodGet, path, nil, &res, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
err = cfg.Execute()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
res.SetPageConfig(cfg, raw)
|
|
return res, nil
|
|
}
|
|
|
|
// Lists the currently available models, and provides basic information about each
|
|
// one such as the owner and availability.
|
|
func (r *ModelService) ListAutoPaging(ctx context.Context, opts ...option.RequestOption) *pagination.PageAutoPager[Model] {
|
|
return pagination.NewPageAutoPager(r.List(ctx, opts...))
|
|
}
|
|
|
|
// Delete a fine-tuned model. You must have the Owner role in your organization to
|
|
// delete a model.
|
|
func (r *ModelService) Delete(ctx context.Context, model string, opts ...option.RequestOption) (res *ModelDeleted, err error) {
|
|
opts = slices.Concat(r.Options, opts)
|
|
if model == "" {
|
|
err = errors.New("missing required model parameter")
|
|
return nil, err
|
|
}
|
|
path := fmt.Sprintf("models/%s", model)
|
|
err = requestconfig.ExecuteNewRequest(ctx, http.MethodDelete, path, nil, &res, opts...)
|
|
return res, err
|
|
}
|
|
|
|
// Describes an OpenAI model offering that can be used with the API.
|
|
type Model struct {
|
|
// The model identifier, which can be referenced in the API endpoints.
|
|
ID string `json:"id" api:"required"`
|
|
// The Unix timestamp (in seconds) when the model was created.
|
|
Created int64 `json:"created" api:"required"`
|
|
// The object type, which is always "model".
|
|
Object constant.Model `json:"object" default:"model"`
|
|
// The organization that owns the model.
|
|
OwnedBy string `json:"owned_by" api:"required"`
|
|
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
|
|
JSON struct {
|
|
ID respjson.Field
|
|
Created respjson.Field
|
|
Object respjson.Field
|
|
OwnedBy respjson.Field
|
|
ExtraFields map[string]respjson.Field
|
|
raw string
|
|
} `json:"-"`
|
|
}
|
|
|
|
// Returns the unmodified JSON received from the API
|
|
func (r Model) RawJSON() string { return r.JSON.raw }
|
|
func (r *Model) UnmarshalJSON(data []byte) error {
|
|
return apijson.UnmarshalRoot(data, r)
|
|
}
|
|
|
|
type ModelDeleted struct {
|
|
ID string `json:"id" api:"required"`
|
|
Deleted bool `json:"deleted" api:"required"`
|
|
Object string `json:"object" api:"required"`
|
|
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
|
|
JSON struct {
|
|
ID respjson.Field
|
|
Deleted respjson.Field
|
|
Object respjson.Field
|
|
ExtraFields map[string]respjson.Field
|
|
raw string
|
|
} `json:"-"`
|
|
}
|
|
|
|
// Returns the unmodified JSON received from the API
|
|
func (r ModelDeleted) RawJSON() string { return r.JSON.raw }
|
|
func (r *ModelDeleted) UnmarshalJSON(data []byte) error {
|
|
return apijson.UnmarshalRoot(data, r)
|
|
}
|