Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ private static (string System, string User) BuildPrompt(
parts.Add("- Similar difficulty level");
parts.Add("- NOT synonyms");
parts.Add("- Could plausibly confuse a learner");
parts.Add("- SINGLE WORD ONLY — no spaces, no multi-word phrases (use \"linearizability\" not \"strong consistency\"; \"sharding\" not \"data partitioning\"). Hyphens are fine.");
parts.Add("");
parts.Add("Task 2 - Hint: Write ONE short sentence (under 15 words) describing what this word means.");
parts.Add($"Do NOT use the word \"{word}\" or direct synonyms in the hint.");
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ services:
- "127.0.0.1:81:81" # Only localhost - not exposed to internet
restart: always
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:81/ > /dev/null || exit 1"]
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:81/ > /dev/null || exit 1"]
interval: 30s
timeout: 5s
retries: 3
Expand Down
Loading