Skip to content

Commit 2d283f5

Browse files
add gemini 3.7 flash, grok 4.6, nemotron 3.5 lightning, and muse glimmer 30b (#331)
1 parent 320b093 commit 2d283f5

2 files changed

Lines changed: 98 additions & 0 deletions

File tree

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

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

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

91+
bot_gemini_3_7_flash:
92+
needs: precache_asknews
93+
uses: ./.github/workflows/run-bot-launcher.yaml
94+
with:
95+
bot_name: "METAC_GEMINI_3_7_FLASH"
96+
metac_name: "metac-gemini-3-7-flash+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+
105+
bot_grok_4_6:
106+
needs: precache_asknews
107+
uses: ./.github/workflows/run-bot-launcher.yaml
108+
with:
109+
bot_name: "METAC_GROK_4_6"
110+
metac_name: "metac-grok-4-6+asknews"
111+
cache_key: asknews-cache-${{ github.run_id }}
112+
secrets:
113+
INPUT_METACULUS_TOKENS: ${{ secrets.METACULUS_TOKENS }}
114+
INPUT_METACULUS_API_BASE_URL: ${{ secrets.METACULUS_API_BASE_URL }}
115+
INPUT_XAI_API_KEY: ${{ secrets.XAI_API_KEY }}
116+
INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
117+
INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }}
118+
INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }}
119+
120+
bot_nemotron_3_5_lightning:
121+
needs: precache_asknews
122+
uses: ./.github/workflows/run-bot-launcher.yaml
123+
with:
124+
bot_name: "METAC_NEMOTRON_3_5_LIGHTNING"
125+
metac_name: "metac-nemotron-3-5-lightning+asknews"
126+
cache_key: asknews-cache-${{ github.run_id }}
127+
secrets:
128+
INPUT_METACULUS_TOKENS: ${{ secrets.METACULUS_TOKENS }}
129+
INPUT_METACULUS_API_BASE_URL: ${{ secrets.METACULUS_API_BASE_URL }}
130+
INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
131+
INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }}
132+
INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }}
133+
134+
bot_muse_glimmer_30b:
135+
needs: precache_asknews
136+
uses: ./.github/workflows/run-bot-launcher.yaml
137+
with:
138+
bot_name: "METAC_MUSE_GLIMMER_30B"
139+
metac_name: "metac-muse-glimmer-30b+asknews"
140+
cache_key: asknews-cache-${{ github.run_id }}
141+
secrets:
142+
INPUT_METACULUS_TOKENS: ${{ secrets.METACULUS_TOKENS }}
143+
INPUT_METACULUS_API_BASE_URL: ${{ secrets.METACULUS_API_BASE_URL }}
144+
INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
145+
INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }}
146+
INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }}
147+
91148
bot_muse_spark_1_2:
92149
needs: precache_asknews
93150
uses: ./.github/workflows/run-bot-launcher.yaml

run_bots.py

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

621621
mode_base_bot_mapping = {
622622
############################ Bots started in August 2026 ############################
623+
"METAC_GEMINI_3_7_FLASH": {
624+
"estimated_cost_per_question": roughly_opus_4_5_cost * 0.21,
625+
"bot": create_bot(
626+
GeneralLlm(
627+
model="openrouter/google/gemini-3.7-flash",
628+
temperature=None,
629+
timeout=gemini_default_timeout,
630+
),
631+
),
632+
"tournaments": TournConfig.aib_and_site,
633+
},
634+
"METAC_GROK_4_6": {
635+
"estimated_cost_per_question": 5 * roughly_one_call_to_grok_4_5_llm,
636+
"bot": create_bot(
637+
llm=GeneralLlm(
638+
model="openrouter/x-ai/grok-4.6",
639+
temperature=default_temperature,
640+
),
641+
),
642+
"tournaments": TournConfig.aib_and_site,
643+
},
644+
"METAC_NEMOTRON_3_5_LIGHTNING": {
645+
"estimated_cost_per_question": roughly_deepseek_r1_cost * 0.1,
646+
"bot": create_bot(
647+
llm=GeneralLlm(
648+
model="openrouter/nvidia/nemotron-3.5-lightning",
649+
temperature=default_temperature,
650+
),
651+
),
652+
"tournaments": TournConfig.aib_and_site,
653+
},
654+
"METAC_MUSE_GLIMMER_30B": {
655+
"estimated_cost_per_question": roughly_gpt_5_cost * 0.15,
656+
"bot": create_bot(
657+
llm=GeneralLlm(
658+
model="openrouter/meta/muse-glimmer-30b",
659+
temperature=default_temperature,
660+
),
661+
),
662+
"tournaments": TournConfig.aib_and_site,
663+
},
623664
"METAC_MUSE_SPARK_1_2": {
624665
"estimated_cost_per_question": roughly_gpt_5_cost * 0.425,
625666
"bot": create_bot(

0 commit comments

Comments
 (0)