mirror-ollama-twitch-bot/main.go

103 lines
2.4 KiB
Go
Raw Normal View History

2024-03-03 00:07:33 +01:00
package main
import (
"os"
"strings"
2024-03-03 00:07:33 +01:00
"github.com/gempir/go-twitch-irc/v4"
"github.com/joho/godotenv"
"go.uber.org/zap"
)
type config struct {
2024-03-05 18:15:03 +01:00
twitchUsername string
twitchOauth string
2024-03-05 21:02:12 +01:00
ollamaModel string
ollamaContext string
ollamaSystem string
2024-03-03 00:07:33 +01:00
}
type application struct {
2024-03-05 21:02:12 +01:00
twitchClient *twitch.Client
log *zap.SugaredLogger
config config
userMsgStore map[string][]ollamaMessage
msgStore []ollamaMessage
2024-03-03 00:07:33 +01:00
}
func main() {
var cfg config
logger := zap.NewExample()
defer func() {
if err := logger.Sync(); err != nil {
logger.Sugar().Errorw("error syncing logger",
"error", err,
)
}
}()
sugar := logger.Sugar()
err := godotenv.Load()
if err != nil {
sugar.Fatal("Error loading .env")
}
cfg.twitchUsername = os.Getenv("TWITCH_USERNAME")
cfg.twitchOauth = os.Getenv("TWITCH_OAUTH")
2024-03-05 21:02:12 +01:00
cfg.ollamaModel = os.Getenv("OLLAMA_MODEL")
cfg.ollamaContext = os.Getenv("OLLAMA_CONTEXT")
cfg.ollamaSystem = os.Getenv("OLLAMA_SYSTEM")
2024-03-03 00:07:33 +01:00
tc := twitch.NewClient(cfg.twitchUsername, cfg.twitchOauth)
2024-03-05 18:35:46 +01:00
userMsgStore := make(map[string][]ollamaMessage)
2024-03-03 00:07:33 +01:00
app := &application{
2024-03-05 21:02:12 +01:00
twitchClient: tc,
log: sugar,
config: cfg,
userMsgStore: userMsgStore,
2024-03-03 00:07:33 +01:00
}
// Received a PrivateMessage (normal chat message).
2024-03-05 21:02:12 +01:00
app.twitchClient.OnPrivateMessage(func(message twitch.PrivateMessage) {
2024-03-03 00:07:33 +01:00
// roomId is the Twitch UserID of the channel the message originated from.
// If there is no roomId something went really wrong.
roomId := message.Tags["room-id"]
if roomId == "" {
return
}
// Message was shorter than our prefix is therefore it's irrelevant for us.
if len(message.Message) >= 2 {
// Check if the first 2 characters of the mesage were our prefix.
// if they were forward the message to the command handler.
if message.Message[:2] == "()" {
go app.handleCommand(message)
return
}
}
})
2024-03-05 21:02:12 +01:00
app.twitchClient.OnConnect(func() {
app.log.Info("Successfully connected to Twitch Servers")
app.log.Info("Ollama Context: ", app.config.ollamaContext)
app.log.Info("Ollama System: ", app.config.ollamaSystem)
2024-03-03 00:07:33 +01:00
})
channels := os.Getenv("TWITCH_CHANNELS")
channel := strings.Split(channels, ",")
for i := 0; i < len(channel); i++ {
2024-03-05 21:02:12 +01:00
app.twitchClient.Join(channel[i])
app.twitchClient.Say(channel[i], "MrDestructoid")
app.log.Infof("Joining channel: %s", channel[i])
}
2024-03-03 00:07:33 +01:00
// Actually connect to chat.
2024-03-05 21:02:12 +01:00
err = app.twitchClient.Connect()
2024-03-03 00:07:33 +01:00
if err != nil {
panic(err)
}
}