Skip to content

Commit

Permalink
FIx linter comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jubeless committed Nov 22, 2024
1 parent 89c9b1c commit 6faf091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llms/llms.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func GenerateFromSinglePrompt(ctx context.Context, llm Model, prompt string, opt
}

// GenerateFromMultiPrompt allows for calling an LLM with
// a multiple prompts
// a multiple prompts.
func GenerateFromMultiPrompt(ctx context.Context, llm Model, msg []MessageContent, options ...CallOption) (string, error) {
resp, err := llm.GenerateContent(ctx, msg, options...)
if err != nil {
Expand Down

0 comments on commit 6faf091

Please sign in to comment.