coai/generation/generate.go
2023-09-21 22:27:41 +08:00

25 lines
704 B
Go

package generation
import (
"chat/utils"
"fmt"
)
func CreateGenerationWithCache(model string, prompt string, hook func(data string)) (string, error) {
hash, path := GetFolderByHash(model, prompt)
if !utils.Exists(path) {
if err := CreateGeneration(model, prompt, path, func(data string) {
hook(data)
}); err != nil {
fmt.Println(fmt.Sprintf("[Project] error during generation %s (model %s): %s", prompt, model, err.Error()))
return "", fmt.Errorf("error during generate project: %s", err.Error())
}
}
if _, _, err := utils.GenerateCompressTask(hash, path, path); err != nil {
return "", fmt.Errorf("error during generate compress task: %s", err.Error())
}
return hash, nil
}