ai

package
v0.2.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 18, 2023 License: MIT Imports: 9 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AIConfiguration added in v0.2.0

type AIConfiguration struct {
	Providers []AIProvider `mapstructure:"providers"`
}

type AIProvider added in v0.2.0

type AIProvider struct {
	Name     string `mapstructure:"name"`
	Model    string `mapstructure:"model"`
	Password string `mapstructure:"password"`
}

type IAI added in v0.0.5

type IAI interface {
	Configure(token string, model string, language string) error
	GetCompletion(ctx context.Context, prompt string) (string, error)
	Parse(ctx context.Context, prompt []string, nocache bool) (string, error)
	GetName() string
}

func NewClient

func NewClient(provider string) IAI

type NoOpAIClient added in v0.2.1

type NoOpAIClient struct {
	// contains filtered or unexported fields
}

func (*NoOpAIClient) Configure added in v0.2.1

func (c *NoOpAIClient) Configure(token string, model string, language string) error

func (*NoOpAIClient) GetCompletion added in v0.2.1

func (c *NoOpAIClient) GetCompletion(ctx context.Context, prompt string) (string, error)

func (*NoOpAIClient) GetName added in v0.2.1

func (a *NoOpAIClient) GetName() string

func (*NoOpAIClient) Parse added in v0.2.1

func (a *NoOpAIClient) Parse(ctx context.Context, prompt []string, nocache bool) (string, error)

type OpenAIClient added in v0.0.5

type OpenAIClient struct {
	// contains filtered or unexported fields
}

func (*OpenAIClient) Configure added in v0.0.5

func (c *OpenAIClient) Configure(token string, model string, language string) error

func (*OpenAIClient) GetCompletion added in v0.0.5

func (c *OpenAIClient) GetCompletion(ctx context.Context, prompt string) (string, error)

func (*OpenAIClient) GetName added in v0.2.1

func (a *OpenAIClient) GetName() string

func (*OpenAIClient) Parse added in v0.2.0

func (a *OpenAIClient) Parse(ctx context.Context, prompt []string, nocache bool) (string, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL