dabugging hinzugefuegt
This commit is contained in:
@@ -17,12 +17,19 @@ func (l *Logger) Info(format string, args ...any) {
|
||||
fmt.Printf(format+"\n", args...)
|
||||
}
|
||||
|
||||
func (l *Logger) Debug(format string, args ...any) {
|
||||
if !l.verbose {
|
||||
return
|
||||
}
|
||||
fmt.Printf(format+"\n", args...)
|
||||
}
|
||||
|
||||
func (l *Logger) ChatMessage(role string, content string) {
|
||||
if !l.verbose {
|
||||
return
|
||||
}
|
||||
|
||||
width := 60
|
||||
width := 120
|
||||
var icon, border string
|
||||
|
||||
switch role {
|
||||
|
||||
Reference in New Issue
Block a user