Compare commits
2 Commits
1e8ff60c54
...
71928498b0
Author | SHA1 | Date | |
---|---|---|---|
71928498b0 | |||
f1131b24e8 |
@ -29,7 +29,7 @@ the model could at any time decide to use one of these tools to discover and
|
||||
read potentially sensitive information from your filesystem.**
|
||||
|
||||
It's best to only have these tools enabled in `config.yaml` when you intend to
|
||||
be using them, because their descriptions (see `pkg/cmd/functions.go`) count
|
||||
be using them, because their descriptions (see `pkg/cli/functions.go`) count
|
||||
towards context usage.
|
||||
|
||||
Available tools:
|
||||
@ -37,9 +37,9 @@ Available tools:
|
||||
- `read_dir` - Read the contents of a directory
|
||||
- `read_file` - Read the contents of a file
|
||||
- `write_file` - Write contents to a file
|
||||
- `insert_file_lines` - Insert lines at a position within a file. Tricky for
|
||||
- `file_insert_lines` - Insert lines at a position within a file. Tricky for
|
||||
the model to use, but can potentially save tokens.
|
||||
- `replace_file_lines` - Remove or replace a range of lines within a file. Even
|
||||
- `file_insert_lines` - Remove or replace a range of lines within a file. Even
|
||||
trickier for the model to use.
|
||||
|
||||
## Install
|
||||
|
@ -26,11 +26,14 @@ func init() {
|
||||
cmd.MarkFlagsMutuallyExclusive("system-prompt", "system-prompt-file")
|
||||
}
|
||||
|
||||
renameCmd.Flags().Bool("generate", false, "Use the LLM to generate the conversation title.")
|
||||
|
||||
rootCmd.AddCommand(
|
||||
continueCmd,
|
||||
lsCmd,
|
||||
newCmd,
|
||||
promptCmd,
|
||||
renameCmd,
|
||||
replyCmd,
|
||||
retryCmd,
|
||||
rmCmd,
|
||||
@ -357,8 +360,8 @@ var newCmd = &cobra.Command{
|
||||
Fatal("No message was provided.\n")
|
||||
}
|
||||
|
||||
conversation := Conversation{}
|
||||
err := store.SaveConversation(&conversation)
|
||||
conversation := &Conversation{}
|
||||
err := store.SaveConversation(conversation)
|
||||
if err != nil {
|
||||
Fatal("Could not save new conversation: %v\n", err)
|
||||
}
|
||||
@ -387,18 +390,67 @@ var newCmd = &cobra.Command{
|
||||
|
||||
conversation.GenerateAndSaveReplies(messages)
|
||||
|
||||
err = conversation.GenerateTitle()
|
||||
title, err := conversation.GenerateTitle()
|
||||
if err != nil {
|
||||
Warn("Could not generate title for conversation: %v\n", err)
|
||||
}
|
||||
|
||||
err = store.SaveConversation(&conversation)
|
||||
conversation.Title = title
|
||||
|
||||
err = store.SaveConversation(conversation)
|
||||
if err != nil {
|
||||
Warn("Could not save conversation after generating title: %v\n", err)
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
var renameCmd = &cobra.Command{
|
||||
Use: "rename <conversation> [title]",
|
||||
Short: "Rename a conversation",
|
||||
Long: `Renames a conversation, either with the provided title or by generating a new name.`,
|
||||
Args: func(cmd *cobra.Command, args []string) error {
|
||||
argCount := 1
|
||||
if err := cobra.MinimumNArgs(argCount)(cmd, args); err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
},
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
shortName := args[0]
|
||||
conversation, err := store.ConversationByShortName(shortName)
|
||||
if conversation.ID == 0 {
|
||||
Fatal("Conversation not found with short name: %s\n", shortName)
|
||||
}
|
||||
|
||||
generate, _ := cmd.Flags().GetBool("generate")
|
||||
var title string
|
||||
if generate {
|
||||
title, err = conversation.GenerateTitle()
|
||||
if err != nil {
|
||||
Fatal("Could not generate title for conversation: %v\n", err)
|
||||
}
|
||||
} else {
|
||||
if len(args) < 2 {
|
||||
Fatal("Conversation title not provided.")
|
||||
}
|
||||
title = strings.Join(args[1:], " ")
|
||||
}
|
||||
|
||||
conversation.Title = title
|
||||
err = store.SaveConversation(conversation)
|
||||
if err != nil {
|
||||
Warn("Could not save conversation with new title: %v\n", err)
|
||||
}
|
||||
},
|
||||
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
||||
compMode := cobra.ShellCompDirectiveNoFileComp
|
||||
if len(args) != 0 {
|
||||
return nil, compMode
|
||||
}
|
||||
return store.ConversationShortNameCompletions(toComplete), compMode
|
||||
},
|
||||
}
|
||||
|
||||
var promptCmd = &cobra.Command{
|
||||
Use: "prompt [message]",
|
||||
Short: "Do a one-shot prompt",
|
||||
|
@ -29,7 +29,7 @@ func (m *Message) FriendlyRole() string {
|
||||
return friendlyRole
|
||||
}
|
||||
|
||||
func (c *Conversation) GenerateTitle() error {
|
||||
func (c *Conversation) GenerateTitle() (string, error) {
|
||||
const header = "Generate a consise 4-5 word title for the conversation below."
|
||||
prompt := fmt.Sprintf("%s\n\n---\n\n%s", header, c.FormatForExternalPrompting(false))
|
||||
|
||||
@ -43,11 +43,10 @@ func (c *Conversation) GenerateTitle() error {
|
||||
model := "gpt-3.5-turbo" // use cheap model to generate title
|
||||
response, err := CreateChatCompletion(model, messages, 25, nil)
|
||||
if err != nil {
|
||||
return err
|
||||
return "", err
|
||||
}
|
||||
|
||||
c.Title = response
|
||||
return nil
|
||||
return response, nil
|
||||
}
|
||||
|
||||
func (c *Conversation) FormatForExternalPrompting(system bool) string {
|
||||
|
Loading…
Reference in New Issue
Block a user