12 lines
275 B
Go
12 lines
275 B
Go
package llm
|
|
|
|
import (
|
|
"context"
|
|
"gitea.maximumdirect.net/eric/promptkit/internal/domain"
|
|
)
|
|
|
|
// Client executes a rendered prompt against an LLM endpoint.
|
|
type Client interface {
|
|
Generate(ctx context.Context, req domain.GenerateRequest) (*domain.GenerateResponse, error)
|
|
}
|