mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-22 11:35:00 +00:00
Add a way to disable default action
This commit is contained in:
parent
bbc4468908
commit
b3f43ab938
2 changed files with 5 additions and 2 deletions
|
@ -425,7 +425,9 @@ func chatEndpoint(cm *ConfigMerger, o *Option) func(c *fiber.Ctx) error {
|
|||
|
||||
// Append the no action function
|
||||
funcs = append(funcs, input.Functions...)
|
||||
funcs = append(funcs, noActionGrammar)
|
||||
if !config.DisableDefaultAnswer {
|
||||
funcs = append(funcs, noActionGrammar)
|
||||
}
|
||||
|
||||
// Force picking one of the functions by the request
|
||||
if config.functionCallNameString != "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue