First deployment
Some checks failed
quality-gates / lint-and-test (push) Has been cancelled
quality-gates / security-scan (push) Has been cancelled

This commit is contained in:
2026-02-13 09:14:04 -05:00
parent 0e21e035f5
commit 679561bcdb
128 changed files with 3479 additions and 120 deletions

View File

@@ -37,18 +37,18 @@ app = FastAPI(title="ClawFort News API", version="0.1.0")
_ERROR_MESSAGES = {
404: [
"Oh no! This page wandered off to train a tiny model.",
"Oh no! We looked everywhere, even in the latent space.",
"Oh no! The link took a creative detour.",
"Oh no! This route is currently off doing research.",
"Oh no! The page you asked for is not in this timeline.",
"This page wandered off to train a tiny model.",
"We looked everywhere, even in the latent space.",
"The link took a creative detour.",
"This route is currently off doing research.",
"The page you asked for is not in this timeline.",
],
500: [
"Oh no! The server hit a logic knot and needs a quick reset.",
"Oh no! Our robots dropped a semicolon somewhere important.",
"Oh no! A background process got stage fright.",
"Oh no! The AI took an unexpected coffee break.",
"Oh no! Something internal blinked at the wrong moment.",
"The server hit a logic knot and needs a quick reset.",
"Our robots dropped a semicolon somewhere important.",
"A background process got stage fright.",
"The AI took an unexpected coffee break.",
"Something internal blinked at the wrong moment.",
],
}