execservice

package
v0.0.63 Latest Latest
Warning

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

Go to latest
Published: Aug 26, 2025 License: Apache-2.0 Imports: 7 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ExecService

type ExecService interface {
	Execute(ctx context.Context, request *TaskRequest) (*SimpleExecutionResponse, error)
}

func NewExec

func NewExec(ctx context.Context, modelRepo llmrepo.ModelRepo) ExecService

func WithActivityTracker

func WithActivityTracker(service ExecService, tracker libtracker.ActivityTracker) ExecService

type SimpleExecutionResponse added in v0.0.56

type SimpleExecutionResponse struct {
	ID       string `json:"id" example:"123e4567-e89b-12d3-a456-426614174000"`
	Response string `json:"response" example:"I'm doing well, thank you!"`
}

type TaskRequest

type TaskRequest struct {
	Prompt        string `json:"prompt" example:"Hello, how are you?"`
	ModelName     string `json:"model_name" example:"gpt-3.5-turbo"`
	ModelProvider string `json:"model_provider" example:"openai"`
}

type TasksEnvService

type TasksEnvService interface {
	Execute(ctx context.Context, chain *taskengine.TaskChainDefinition, input any, inputType taskengine.DataType) (any, taskengine.DataType, []taskengine.CapturedStateUnit, error)
	taskengine.HookRegistry
}

func EnvWithActivityTracker

func EnvWithActivityTracker(service TasksEnvService, tracker libtracker.ActivityTracker) TasksEnvService

func NewTasksEnv

func NewTasksEnv(ctx context.Context, environmentExec taskengine.EnvExecutor, hookRegistry taskengine.HookRegistry) TasksEnvService

Jump to

Keyboard shortcuts

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