outbound

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Dec 7, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

logging outbound port that supports various levels and adding fields to the log

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LlmService

type LlmService interface {
	ListModels() ([]string, error)
	SetModel(model string) error
	SendMessage(prompt string, context []string, resHandler ResponseHandler) error
}

type Log

type Log interface {
	Debug(msg string, fields ...LogField)
	Info(msg string, fields ...LogField)
	Error(msg string, fields ...LogField)
}

type LogField

type LogField struct {
	Key   string
	Value interface{}
}

type MessageFormatter

type MessageFormatter interface {
	Format(message models.Message) (string, error)
}

type ResponseHandler

type ResponseHandler func(ctx context.Context, chunk []byte) error

ResponseHandler is a function that is called for every data chunk that is received. EOF is indicated by an empty chunk.

type SendMessageService

type SendMessageService interface {
	SendMessage(message string, connection interface{}) error
}

Jump to

Keyboard shortcuts

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