2024-02-21 21:55:38 -07:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
cmdutil "git.mlow.ca/mlow/lmcli/pkg/cmd/util"
|
|
|
|
"git.mlow.ca/mlow/lmcli/pkg/lmcli"
|
|
|
|
"git.mlow.ca/mlow/lmcli/pkg/lmcli/model"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func PromptCmd(ctx *lmcli.Context) *cobra.Command {
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "prompt [message]",
|
|
|
|
Short: "Do a one-shot prompt",
|
|
|
|
Long: `Prompt the Large Language Model and get a response.`,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
message := inputFromArgsOrEditor(args, "# What would you like to say?\n", "")
|
|
|
|
if message == "" {
|
|
|
|
return fmt.Errorf("No message was provided.")
|
|
|
|
}
|
|
|
|
|
|
|
|
messages := []model.Message{
|
|
|
|
{
|
2024-05-07 01:11:04 -06:00
|
|
|
Role: model.MessageRoleSystem,
|
|
|
|
Content: ctx.GetSystemPrompt(),
|
2024-02-21 21:55:38 -07:00
|
|
|
},
|
|
|
|
{
|
2024-05-07 01:11:04 -06:00
|
|
|
Role: model.MessageRoleUser,
|
2024-02-21 21:55:38 -07:00
|
|
|
Content: message,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2024-05-07 01:11:04 -06:00
|
|
|
_, err := cmdutil.Prompt(ctx, messages, nil)
|
2024-02-21 21:55:38 -07:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("Error fetching LLM response: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
2024-05-07 01:11:04 -06:00
|
|
|
|
|
|
|
applyPromptFlags(ctx, cmd)
|
2024-02-21 21:55:38 -07:00
|
|
|
return cmd
|
|
|
|
}
|