mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-08 07:11:06 +00:00
254 lines
6.0 KiB
Go
254 lines
6.0 KiB
Go
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/danielmiessler/fabric/common"
|
|
"github.com/danielmiessler/fabric/core"
|
|
"github.com/danielmiessler/fabric/plugins/ai"
|
|
"github.com/danielmiessler/fabric/plugins/db/fsdb"
|
|
"github.com/danielmiessler/fabric/plugins/tools/converter"
|
|
"github.com/danielmiessler/fabric/restapi"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
// Cli Controls the cli. It takes in the flags and runs the appropriate functions
|
|
func Cli(version string) (err error) {
|
|
var currentFlags *Flags
|
|
if currentFlags, err = Init(); err != nil {
|
|
return
|
|
}
|
|
|
|
if currentFlags.Version {
|
|
fmt.Println(version)
|
|
return
|
|
}
|
|
|
|
var homedir string
|
|
if homedir, err = os.UserHomeDir(); err != nil {
|
|
return
|
|
}
|
|
|
|
fabricDb := fsdb.NewDb(filepath.Join(homedir, ".config/fabric"))
|
|
|
|
if err = fabricDb.Configure(); err != nil {
|
|
if !currentFlags.Setup {
|
|
println(err.Error())
|
|
currentFlags.Setup = true
|
|
}
|
|
}
|
|
|
|
registry := core.NewPluginRegistry(fabricDb)
|
|
|
|
// if the setup flag is set, run the setup function
|
|
if currentFlags.Setup {
|
|
err = registry.Setup()
|
|
return
|
|
}
|
|
|
|
if currentFlags.Serve {
|
|
err = restapi.Serve(registry, currentFlags.ServeAddress)
|
|
return
|
|
}
|
|
|
|
if currentFlags.UpdatePatterns {
|
|
err = registry.PatternsLoader.PopulateDB()
|
|
return
|
|
}
|
|
|
|
if currentFlags.ChangeDefaultModel {
|
|
err = registry.Defaults.Setup()
|
|
return
|
|
}
|
|
|
|
if currentFlags.LatestPatterns != "0" {
|
|
var parsedToInt int
|
|
if parsedToInt, err = strconv.Atoi(currentFlags.LatestPatterns); err != nil {
|
|
return
|
|
}
|
|
|
|
if err = fabricDb.Patterns.PrintLatestPatterns(parsedToInt); err != nil {
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
if currentFlags.ListPatterns {
|
|
err = fabricDb.Patterns.ListNames()
|
|
return
|
|
}
|
|
|
|
if currentFlags.ListAllModels {
|
|
var models *ai.VendorsModels
|
|
if models, err = registry.VendorManager.GetModels(); err != nil {
|
|
return
|
|
}
|
|
models.Print()
|
|
return
|
|
}
|
|
|
|
if currentFlags.ListAllContexts {
|
|
err = fabricDb.Contexts.ListNames()
|
|
return
|
|
}
|
|
|
|
if currentFlags.ListAllSessions {
|
|
err = fabricDb.Sessions.ListNames()
|
|
return
|
|
}
|
|
|
|
if currentFlags.WipeContext != "" {
|
|
err = fabricDb.Contexts.Delete(currentFlags.WipeContext)
|
|
return
|
|
}
|
|
|
|
if currentFlags.WipeSession != "" {
|
|
err = fabricDb.Sessions.Delete(currentFlags.WipeSession)
|
|
return
|
|
}
|
|
|
|
if currentFlags.PrintSession != "" {
|
|
err = fabricDb.Sessions.PrintSession(currentFlags.PrintSession)
|
|
return
|
|
}
|
|
|
|
if currentFlags.PrintContext != "" {
|
|
err = fabricDb.Contexts.PrintContext(currentFlags.PrintContext)
|
|
return
|
|
}
|
|
|
|
if currentFlags.HtmlReadability {
|
|
if msg, cleanErr := converter.HtmlReadability(currentFlags.Message); cleanErr != nil {
|
|
fmt.Println("use original input, because can't apply html readability", err)
|
|
} else {
|
|
currentFlags.Message = msg
|
|
}
|
|
}
|
|
|
|
// if the interactive flag is set, run the interactive function
|
|
// if currentFlags.Interactive {
|
|
// interactive.Interactive()
|
|
// }
|
|
|
|
// if none of the above currentFlags are set, run the initiate chat function
|
|
|
|
if currentFlags.YouTube != "" {
|
|
if registry.YouTube.IsConfigured() == false {
|
|
err = fmt.Errorf("YouTube is not configured, please run the setup procedure")
|
|
return
|
|
}
|
|
|
|
var videoId string
|
|
if videoId, err = registry.YouTube.GetVideoId(currentFlags.YouTube); err != nil {
|
|
return
|
|
}
|
|
|
|
if !currentFlags.YouTubeComments || currentFlags.YouTubeTranscript {
|
|
var transcript string
|
|
var language = "en"
|
|
if currentFlags.Language != "" || registry.Language.DefaultLanguage.Value != "" {
|
|
if currentFlags.Language != "" {
|
|
language = currentFlags.Language
|
|
} else {
|
|
language = registry.Language.DefaultLanguage.Value
|
|
}
|
|
}
|
|
if transcript, err = registry.YouTube.GrabTranscript(videoId, language); err != nil {
|
|
return
|
|
}
|
|
|
|
currentFlags.AppendMessage(transcript)
|
|
}
|
|
|
|
if currentFlags.YouTubeComments {
|
|
var comments []string
|
|
if comments, err = registry.YouTube.GrabComments(videoId); err != nil {
|
|
return
|
|
}
|
|
|
|
commentsString := strings.Join(comments, "\n")
|
|
|
|
currentFlags.AppendMessage(commentsString)
|
|
}
|
|
|
|
if !currentFlags.IsChatRequest() {
|
|
// if the pattern flag is not set, we wanted only to grab the transcript or comments
|
|
fmt.Println(currentFlags.Message)
|
|
return
|
|
}
|
|
}
|
|
|
|
if (currentFlags.ScrapeURL != "" || currentFlags.ScrapeQuestion != "") && registry.Jina.IsConfigured() {
|
|
// Check if the scrape_url flag is set and call ScrapeURL
|
|
if currentFlags.ScrapeURL != "" {
|
|
var website string
|
|
if website, err = registry.Jina.ScrapeURL(currentFlags.ScrapeURL); err != nil {
|
|
return
|
|
}
|
|
|
|
currentFlags.AppendMessage(website)
|
|
}
|
|
|
|
// Check if the scrape_question flag is set and call ScrapeQuestion
|
|
if currentFlags.ScrapeQuestion != "" {
|
|
var website string
|
|
if website, err = registry.Jina.ScrapeQuestion(currentFlags.ScrapeQuestion); err != nil {
|
|
return
|
|
}
|
|
|
|
currentFlags.AppendMessage(website)
|
|
}
|
|
|
|
if !currentFlags.IsChatRequest() {
|
|
// if the pattern flag is not set, we wanted only to grab the url or get the answer to the question
|
|
fmt.Println(currentFlags.Message)
|
|
return
|
|
}
|
|
}
|
|
|
|
var chatter *core.Chatter
|
|
if chatter, err = registry.GetChatter(currentFlags.Model, currentFlags.Stream, currentFlags.DryRun); err != nil {
|
|
return
|
|
}
|
|
|
|
var session *fsdb.Session
|
|
var chatReq *common.ChatRequest
|
|
if chatReq, err = currentFlags.BuildChatRequest(strings.Join(os.Args[1:], " ")); err != nil {
|
|
return
|
|
}
|
|
|
|
if chatReq.Language == "" {
|
|
chatReq.Language = registry.Language.DefaultLanguage.Value
|
|
}
|
|
if session, err = chatter.Send(chatReq, currentFlags.BuildChatOptions()); err != nil {
|
|
return
|
|
}
|
|
|
|
result := session.GetLastMessage().Content
|
|
|
|
if !currentFlags.Stream {
|
|
// print the result if it was not streamed already
|
|
fmt.Println(result)
|
|
}
|
|
|
|
// if the copy flag is set, copy the message to the clipboard
|
|
if currentFlags.Copy {
|
|
if err = CopyToClipboard(result); err != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
// if the output flag is set, create an output file
|
|
if currentFlags.Output != "" {
|
|
if currentFlags.OutputSession {
|
|
sessionAsString := session.String()
|
|
err = CreateOutputFile(sessionAsString, currentFlags.Output)
|
|
} else {
|
|
err = CreateOutputFile(result, currentFlags.Output)
|
|
}
|
|
}
|
|
return
|
|
}
|