Documentation
¶
Index ¶
- type Client
- func (c *Client) Complete(ctx context.Context, prompt string, opts *domain.ChatOptions) (text string, err error)
- func (c *Client) GetEmbeddings(ctx context.Context, input string, opts *domain.ChatOptions) (embeddings []float64, err error)
- func (c *Client) ListModels(_ context.Context) ([]string, error)
- func (c *Client) Send(ctx context.Context, msgs []*chat.ChatCompletionMessage, ...) (content string, err error)
- func (c *Client) SendStream(_ context.Context, msgs []*chat.ChatCompletionMessage, ...) (err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
*plugins.PluginBase
ApiUrl *plugins.SetupQuestion
ApiKey *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) GetEmbeddings ¶
func (*Client) ListModels ¶
ListModels returns a list of available models.
func (*Client) Send ¶
func (c *Client) Send(ctx context.Context, msgs []*chat.ChatCompletionMessage, opts *domain.ChatOptions) (content string, err error)
func (*Client) SendStream ¶
func (c *Client) SendStream(_ context.Context, msgs []*chat.ChatCompletionMessage, opts *domain.ChatOptions, channel chan domain.StreamUpdate) (err error)
Click to show internal directories.
Click to hide internal directories.