Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/run-bot-aib-tournament.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,32 @@ jobs:

#################################### June 2026 new bots ####################################

bot_openrouter_fusion_general_budget:
needs: precache_asknews
uses: ./.github/workflows/run-bot-launcher.yaml
with:
bot_name: "METAC_OPENROUTER_FUSION_GENERAL_BUDGET"
metac_name: "metac-openrouter-fusion-general-budget"
cache_key: asknews-cache-${{ github.run_id }}
secrets:
INPUT_METACULUS_TOKENS: ${{ secrets.METACULUS_TOKENS }}
INPUT_METACULUS_API_BASE_URL: ${{ secrets.METACULUS_API_BASE_URL }}
INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}

bot_glm_5_2:
needs: precache_asknews
uses: ./.github/workflows/run-bot-launcher.yaml
with:
bot_name: "METAC_GLM_5_2"
metac_name: "metac-glm-5-2+asknews"
cache_key: asknews-cache-${{ github.run_id }}
secrets:
INPUT_METACULUS_TOKENS: ${{ secrets.METACULUS_TOKENS }}
INPUT_METACULUS_API_BASE_URL: ${{ secrets.METACULUS_API_BASE_URL }}
INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }}
INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }}

# bot_claude_fable_5_high:
# needs: precache_asknews
# uses: ./.github/workflows/run-bot-launcher.yaml
Expand Down
31 changes: 31 additions & 0 deletions run_bots.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,37 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR
"tournaments": TournConfig.aib_and_site,
},
############################ Bots started in June 2026 ############################
"METAC_OPENROUTER_FUSION_GENERAL_BUDGET": {
"estimated_cost_per_question": roughly_opus_4_5_cost, # Rough guess: budget panel of models + frontier judge + final answer
"bot": create_bot(
llm=GeneralLlm(
model="openrouter/openrouter/fusion",
temperature=default_temperature,
timeout=20 * 60,
extra_body={
"plugins": [
{
"id": "fusion",
"preset": "general-budget",
}
]
},
),
researcher="no_research", # Fusion does its own web research behind the API
predictions_per_research_report=1, # Fusion already aggregates a multi-model panel internally, so only run it once
),
"tournaments": TournConfig.aib_and_site,
},
"METAC_GLM_5_2": {
"estimated_cost_per_question": roughly_deepseek_r1_cost,
"bot": create_bot(
llm=GeneralLlm(
model="openrouter/z-ai/glm-5.2",
temperature=default_temperature,
),
),
"tournaments": TournConfig.aib_and_site,
},
"METAC_CLAUDE_FABLE_5_HIGH": {
"estimated_cost_per_question": roughly_opus_4_5_cost * 2,
"bot": create_bot(
Expand Down
Loading