Also rework the so the platform absorbs all the business logic that was going in the wrong place.
9 lines
164 B
Go
9 lines
164 B
Go
package text
|
|
|
|
import (
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func SendTextFromLLM(content string) {
|
|
log.Info().Str("content", content).Msg("Pretend I sent a message")
|
|
}
|