From d8184876b88f33a43ff0a80d5bcdb581a00717b7 Mon Sep 17 00:00:00 2001 From: jerry Date: Tue, 1 Sep 2026 15:50:04 -0400 Subject: [PATCH] add fable 5.1 --- .github/workflows/run-bot-aib-tournament.yaml | 17 +++++++++++++++++ run_bots.py | 11 +++++++++++ 2 files changed, 28 insertions(+) diff --git a/.github/workflows/run-bot-aib-tournament.yaml b/.github/workflows/run-bot-aib-tournament.yaml index f1081091..1fb3e664 100644 --- a/.github/workflows/run-bot-aib-tournament.yaml +++ b/.github/workflows/run-bot-aib-tournament.yaml @@ -86,6 +86,23 @@ jobs: # NOTE: don't remove any of the open source models, since these are the best option for a long term baseline (other models get deprecated) + #################################### September 2026 new bots #################################### + + bot_claude_fable_5_1: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_CLAUDE_FABLE_5_1" + metac_name: "metac-claude-fable-5-1-high+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_ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} + INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }} + INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }} + INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} + #################################### August 2026 new bots #################################### bot_qwen_3_8_flash: diff --git a/run_bots.py b/run_bots.py index 893480ae..c4f42ab6 100644 --- a/run_bots.py +++ b/run_bots.py @@ -619,6 +619,17 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR } mode_base_bot_mapping = { + ############################ Bots started in September 2026 ############################ + "METAC_CLAUDE_FABLE_5_1": { + "estimated_cost_per_question": roughly_opus_4_5_cost * 2, + "bot": create_bot( + llm=GeneralLlm( + model="anthropic/claude-fable-5-1", + temperature=None, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, ############################ Bots started in August 2026 ############################ "METAC_QWEN_3_8_FLASH": { "estimated_cost_per_question": roughly_gpt_5_cost * 0.047,