add prompt back to parser

This commit is contained in:
Jeffrey Morgan 2023-07-20 01:13:30 -07:00
parent 55b5f5dc34
commit d59b164fa2
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ func Parse(reader io.Reader) ([]Command, error) {
command.Args = string(fields[1])
// copy command for validation
modelCommand = command
case "LICENSE", "TEMPLATE", "SYSTEM":
case "LICENSE", "TEMPLATE", "SYSTEM", "PROMPT":
command.Name = string(bytes.ToLower(fields[0]))
command.Args = string(fields[1])
case "PARAMETER":