From 1e0b9b69e880c69014fd50a96105753ef7be6ae4 Mon Sep 17 00:00:00 2001 From: jerry Date: Sun, 6 Sep 2026 16:38:04 -0400 Subject: [PATCH] add gemini 3.8 flash, muse spark 1.3, gpt-6 astra --- .github/workflows/run-bot-aib-tournament.yaml | 43 +++++++++++++++++++ run_bots.py | 33 ++++++++++++++ 2 files changed, 76 insertions(+) diff --git a/.github/workflows/run-bot-aib-tournament.yaml b/.github/workflows/run-bot-aib-tournament.yaml index 1fb3e664..855a86b6 100644 --- a/.github/workflows/run-bot-aib-tournament.yaml +++ b/.github/workflows/run-bot-aib-tournament.yaml @@ -88,6 +88,49 @@ jobs: #################################### September 2026 new bots #################################### + bot_gpt_6_astra_high: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GPT_6_ASTRA_HIGH" + metac_name: "metac-gpt-6-astra-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_OPENAI_API_KEY: ${{ secrets.OPENAI_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_gemini_3_8_flash: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GEMINI_3_8_FLASH" + metac_name: "metac-gemini-3-8-flash+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_muse_spark_1_3: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_MUSE_SPARK_1_3" + metac_name: "metac-muse-spark-1-3+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_1: needs: precache_asknews uses: ./.github/workflows/run-bot-launcher.yaml diff --git a/run_bots.py b/run_bots.py index 4ca8051d..a746d564 100644 --- a/run_bots.py +++ b/run_bots.py @@ -620,6 +620,39 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR mode_base_bot_mapping = { ############################ Bots started in September 2026 ############################ + "METAC_GPT_6_ASTRA_HIGH": { + "estimated_cost_per_question": roughly_gpt_5_high_cost * 5, + "bot": create_bot( + llm=GeneralLlm( + model="openai/gpt-6-astra", + reasoning_effort="high", + temperature=None, + timeout=gpt_5_timeout, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_GEMINI_3_8_FLASH": { + "estimated_cost_per_question": roughly_opus_4_5_cost * 0.21, + "bot": create_bot( + GeneralLlm( + model="openrouter/google/gemini-3.8-flash", + temperature=None, + timeout=gemini_default_timeout, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_MUSE_SPARK_1_3": { + "estimated_cost_per_question": roughly_gpt_5_cost * 0.425, + "bot": create_bot( + llm=GeneralLlm( + model="openrouter/meta/muse-spark-1.3", + temperature=default_temperature, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, "METAC_CLAUDE_FABLE_5_1": { "estimated_cost_per_question": roughly_opus_4_5_cost * 2, "bot": create_bot(