From b623386badd473ac4d1898edd0034ec3caf32790 Mon Sep 17 00:00:00 2001 From: jerry Date: Wed, 8 Jul 2026 17:41:03 -0400 Subject: [PATCH] add grok 4.5 high --- .github/workflows/run-bot-aib-tournament.yaml | 15 +++++++++++++++ run_bots.py | 12 ++++++++++++ 2 files changed, 27 insertions(+) diff --git a/.github/workflows/run-bot-aib-tournament.yaml b/.github/workflows/run-bot-aib-tournament.yaml index 67afa3b1..b92cf77d 100644 --- a/.github/workflows/run-bot-aib-tournament.yaml +++ b/.github/workflows/run-bot-aib-tournament.yaml @@ -88,6 +88,21 @@ jobs: #################################### July 2026 new bots #################################### + bot_grok_4_5_high: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GROK_4_5_HIGH" + metac_name: "metac-grok-4-5-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_XAI_API_KEY: ${{ secrets.XAI_API_KEY }} + INPUT_OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} + INPUT_ASKNEWS_CLIENT_ID: ${{ secrets.ASKNEWS_CLIENT_ID }} + INPUT_ASKNEWS_SECRET: ${{ secrets.ASKNEWS_SECRET }} + bot_claude_sonnet_5: needs: precache_asknews uses: ./.github/workflows/run-bot-launcher.yaml diff --git a/run_bots.py b/run_bots.py index e735cbfd..1adc324a 100644 --- a/run_bots.py +++ b/run_bots.py @@ -497,6 +497,7 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR guess_at_deepseek_plus_search = roughly_deepseek_r1_cost + guess_at_search_cost guess_at_deepseek_v3_1_cost = roughly_deepseek_r1_cost / 2 roughly_one_call_to_grok_4_llm = 0.084 + roughly_one_call_to_grok_4_5_llm = 0.15 roughly_sonar_deep_research_cost_per_call = 1.35399 / 3 roughly_opus_4_5_cost = 1.5 @@ -619,6 +620,17 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR mode_base_bot_mapping = { ############################ Bots started in July 2026 ############################ + "METAC_GROK_4_5_HIGH": { + "estimated_cost_per_question": 5 * roughly_one_call_to_grok_4_5_llm, + "bot": create_bot( + llm=GeneralLlm( + model="openrouter/x-ai/grok-4.5", + reasoning_effort="high", + temperature=default_temperature, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, "METAC_CLAUDE_SONNET_5": { "estimated_cost_per_question": roughly_opus_4_5_cost * 1.5, "bot": create_bot(