Documentation ¶
Index ¶
- Constants
- type Client
- func (c *Client) Call(ctx context.Context, messageRequest types.CompletionRequest, ...) (*types.CompletionMessage, error)
- func (c *Client) ListModels(ctx context.Context, providers ...string) (result []string, _ error)
- func (c *Client) RetrieveAPIKey(ctx context.Context) error
- func (c *Client) Supports(ctx context.Context, modelName string) (bool, error)
- func (c *Client) ValidAuth() error
- type InvalidAuthError
- type Options
Constants ¶
View Source
const ( DefaultModel = openai.GPT4o BuiltinCredName = "sys.openai" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func NewClient ¶
func NewClient(ctx context.Context, credStore credentials.CredentialStore, opts ...Options) (*Client, error)
func (*Client) Call ¶
func (c *Client) Call(ctx context.Context, messageRequest types.CompletionRequest, status chan<- types.CompletionStatus) (*types.CompletionMessage, error)
func (*Client) ListModels ¶ added in v0.1.4
func (*Client) RetrieveAPIKey ¶ added in v0.8.0
type InvalidAuthError ¶ added in v0.8.0
type InvalidAuthError struct{}
func (InvalidAuthError) Error ¶ added in v0.8.0
func (InvalidAuthError) Error() string
type Options ¶
type Options struct { BaseURL string `usage:"OpenAI base URL" name:"openai-base-url" env:"OPENAI_BASE_URL"` APIKey string `usage:"OpenAI API KEY" name:"openai-api-key" env:"OPENAI_API_KEY"` OrgID string `usage:"OpenAI organization ID" name:"openai-org-id" env:"OPENAI_ORG_ID"` DefaultModel string `usage:"Default LLM model to use" default:"gpt-4o"` ConfigFile string `usage:"Path to GPTScript config file" name:"config"` SetSeed bool `usage:"-"` CacheKey string `usage:"-"` Cache *cache.Client }
Click to show internal directories.
Click to hide internal directories.