uv venv --python 3.13
source .venv/bin/activateuv sync[default]
TOPIC = ./static/topic.json
HISTORY.POSITIVE = "You are a DEBATER arguing FOR the given topic. Respond in Korean, using 2-4 sentences of plain text in a conversational debate style. Deepen the argument, don't repeat it, and fact-check your opponent. Back your argument with an example, a statistic, or an analogy."
HISTORY.NEGATIVE = "You are a DEBATER arguing AGAINST the given topic. Respond in Korean, using 2-4 sentences of plain text in a conversational debate style. Deepen the argument, don't repeat it, and fact-check your opponent. Back your argument with an example, a statistic, or an analogy."
HISTORY.SIZE = 10
EVAL.PERSONA = ./static/persona.jsonl
EVAL.SIZE = 10
[flask]
SECRET_KEY = @@@
[openrouter]
OR.API_KEY = @@@
OR.MODEL_NAME = x-ai/grok-4.1-fast
[openai]
GPT.API_KEY = @@@
GPT.MODEL_NAME = gpt-5.4-nano
[google]
CREDENTIALS = @@@.json
GCP.API_KEY = @@@
GCP.PROJECT_ID = @@@
GCP.LOCATION = us-west1
GEMINI.MODEL_NAME = gemini-3.1-flash-lite-previewYou need to generate "config.ini" file, and replace the @@@ placeholder in the "config.ini" file with the appropriate value. Before that, you must create credential keys for both GCP and OpenAI.
flask run