/
/
/
1"""Constants for the Music Quiz provider."""
2
3from __future__ import annotations
4
5# guards applied to every AI request and response in this provider, so a wedged or
6# runaway engine fails the round instead of the whole quiz
7AI_QUERY_TIMEOUT_SECONDS = 30.0
8MAX_AI_PROMPT_BYTES = 8192
9MAX_AI_RESPONSE_BYTES = 4096
10MAX_AI_RESPONSE_LINES = 32
11