move prompt templates out of python bindings

This commit is contained in:
Jeffrey Morgan
2023-07-03 17:14:20 -04:00
parent 6093a88c1a
commit 9164981d72
16 changed files with 11 additions and 11 deletions

View File

@@ -59,7 +59,7 @@ func NewCLI() *cobra.Command {
rootCmd := &cobra.Command{
Use: "ollama",
Short: "Run any large language model on any machine.",
Short: "Large language model runner",
CompletionOptions: cobra.CompletionOptions{
DisableDefaultCmd: true,
},
@@ -88,14 +88,13 @@ func NewCLI() *cobra.Command {
},
}
/*
runCmd := &cobra.Command{
Use: "run",
Short: "Run a model and submit prompts.",
RunE: func(cmd *cobra.Command. args []string) error {
RunE: func(cmd *cobra.Command,args []string) error {
return nil
},
}
*/
serveCmd := &cobra.Command{
Use: "serve",
@@ -132,6 +131,7 @@ func NewCLI() *cobra.Command {
rootCmd.AddCommand(
modelsCmd,
serveCmd,
runCmd,
)
return rootCmd