Documentation
¶
Index ¶
- type Client
- func (c *Client) Complete(ctx context.Context, prompt string, opts *common.ChatOptions) (string, error)
- func (c *Client) Configure() error
- func (c *Client) GetEmbeddings(ctx context.Context, input string, opts *common.ChatOptions) ([]float64, error)
- func (c *Client) GetName() string
- func (c *Client) IsConfigured() bool
- func (c *Client) ListModels() ([]string, error)
- func (c *Client) Send(ctx context.Context, msgs []*goopenai.ChatCompletionMessage, ...) (string, error)
- func (c *Client) SendStream(msgs []*goopenai.ChatCompletionMessage, opts *common.ChatOptions, ...) error
- func (c *Client) Setup() error
- func (c *Client) SetupFillEnvFileContent(buffer *bytes.Buffer)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
*plugins.PluginBase
ApiBaseURL *plugins.SetupQuestion
HttpClient *http.Client
}
Client represents the LM Studio client.
func NewClient ¶
func NewClient() (ret *Client)
NewClient creates a new LM Studio client with default configuration.
func NewClientCompatible ¶
func NewClientCompatible(vendorName string, defaultBaseUrl string, configureCustom func() error) (ret *Client)
NewClientCompatible creates a new LM Studio client with custom configuration.
func (*Client) Complete ¶
func (c *Client) Complete(ctx context.Context, prompt string, opts *common.ChatOptions) (string, error)
Complete sends a completion request and returns the response.
func (*Client) GetEmbeddings ¶
func (c *Client) GetEmbeddings(ctx context.Context, input string, opts *common.ChatOptions) ([]float64, error)
GetEmbeddings returns embeddings for the given input.
func (*Client) IsConfigured ¶
IsConfigured checks if the client is configured.
func (*Client) ListModels ¶
ListModels returns a list of available models.
func (*Client) Send ¶
func (c *Client) Send(ctx context.Context, msgs []*goopenai.ChatCompletionMessage, opts *common.ChatOptions) (string, error)
Send sends a single message and returns the response.
func (*Client) SendStream ¶
func (c *Client) SendStream(msgs []*goopenai.ChatCompletionMessage, opts *common.ChatOptions, channel chan string) error
func (*Client) SetupFillEnvFileContent ¶
SetupFillEnvFileContent fills the environment file content.
Click to show internal directories.
Click to hide internal directories.