diff --git a/components/room.html b/components/room.html
index 7072e8c..bb1c84f 100644
--- a/components/room.html
+++ b/components/room.html
@@ -50,6 +50,14 @@
{{template "teamlist" .Room.RedTeam}}
+
+ Server says:
+
+ {{range .Room.LogJournal}}
+ - {{.}}
+ {{end}}
+
+
{{template "cardtable" .Room}}
diff --git a/llmapi/main.go b/llmapi/main.go
index 4d8c383..ad5c962 100644
--- a/llmapi/main.go
+++ b/llmapi/main.go
@@ -40,20 +40,6 @@ type DSResp struct {
Object string `json:"object"`
}
-// type LLMResp struct {
-// Choices []struct {
-// FinishReason string `json:"finish_reason"`
-// Index int `json:"index"`
-// Message struct {
-// Content string `json:"content"`
-// Role string `json:"role"`
-// } `json:"message"`
-// } `json:"choices"`
-// Created int `json:"created"`
-// Model string `json:"model"`
-// Object string `json:"object"`
-// }
-
type LLMResp struct {
Index int `json:"index"`
Content string `json:"content"`
diff --git a/models/main.go b/models/main.go
index 019f1ba..ff8f6c4 100644
--- a/models/main.go
+++ b/models/main.go
@@ -84,6 +84,8 @@ type Room struct {
// ProgressPct uint32 `json:"progress_pct"`
IsOver bool
TeamWon UserTeam // blue | red
+ // needed for debug
+ LogJournal []string
}
func (r *Room) CanStart() error {