Skip to content

Commit ac265d4

Browse files
committed
add glm 5.3
1 parent 2d283f5 commit ac265d4

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/run-bot-aib-tournament.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,20 @@ jobs:
8888

8989
#################################### August 2026 new bots ####################################
9090

91+
bot_glm_5_3:
92+
needs: precache_asknews
93+
uses: ./.github/workflows/run-bot-launcher.yaml
94+
with:
95+
bot_name: "METAC_GLM_5_3"
96+
metac_name: "metac-glm-5-3+asknews"
97+
cache_key: asknews-cache-${{ github.run_id }}
98+
secrets:
99+
INPUT_METACULUS_TOKENS: ${{ secrets.METACULUS_TOKENS }}
100+
INPUT_METACULUS_API_BASE_URL: ${{ secrets.METACULUS_API_BASE_URL }}
101+
INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
102+
INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }}
103+
INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }}
104+
91105
bot_gemini_3_7_flash:
92106
needs: precache_asknews
93107
uses: ./.github/workflows/run-bot-launcher.yaml

run_bots.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -620,6 +620,16 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR
620620

621621
mode_base_bot_mapping = {
622622
############################ Bots started in August 2026 ############################
623+
"METAC_GLM_5_3": {
624+
"estimated_cost_per_question": roughly_gpt_5_cost * 0.44,
625+
"bot": create_bot(
626+
llm=GeneralLlm(
627+
model="openrouter/z-ai/glm-5.3",
628+
temperature=default_temperature,
629+
),
630+
),
631+
"tournaments": TournConfig.aib_and_site,
632+
},
623633
"METAC_GEMINI_3_7_FLASH": {
624634
"estimated_cost_per_question": roughly_opus_4_5_cost * 0.21,
625635
"bot": create_bot(

0 commit comments

Comments
 (0)