From 7007762c90cafc022e152242909a47c7f892530c Mon Sep 17 00:00:00 2001 From: jerry Date: Fri, 10 Jul 2026 17:01:17 -0400 Subject: [PATCH] add gpt 5.6 models --- .github/workflows/run-bot-aib-tournament.yaml | 45 +++++++++++++++++++ run_bots.py | 34 ++++++++++++++ 2 files changed, 79 insertions(+) diff --git a/.github/workflows/run-bot-aib-tournament.yaml b/.github/workflows/run-bot-aib-tournament.yaml index b92cf77d..915b1b29 100644 --- a/.github/workflows/run-bot-aib-tournament.yaml +++ b/.github/workflows/run-bot-aib-tournament.yaml @@ -88,6 +88,51 @@ jobs: #################################### July 2026 new bots #################################### + bot_gpt_5_6_luna: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GPT_5_6_LUNA" + metac_name: "metac-gpt-5-6-luna+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_gpt_5_6_terra: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GPT_5_6_TERRA" + metac_name: "metac-gpt-5-6-terra+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_gpt_5_6_sol_high: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GPT_5_6_SOL_HIGH" + metac_name: "metac-gpt-5-6-sol-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_grok_4_5_high: needs: precache_asknews uses: ./.github/workflows/run-bot-launcher.yaml diff --git a/run_bots.py b/run_bots.py index 1adc324a..70116d6c 100644 --- a/run_bots.py +++ b/run_bots.py @@ -620,6 +620,40 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR mode_base_bot_mapping = { ############################ Bots started in July 2026 ############################ + "METAC_GPT_5_6_LUNA": { + "estimated_cost_per_question": roughly_gpt_5_cost * 0.6, + "bot": create_bot( + llm=GeneralLlm( + model="openai/gpt-5.6-luna", + temperature=None, + timeout=gpt_5_timeout, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_GPT_5_6_TERRA": { + "estimated_cost_per_question": roughly_gpt_5_cost * 1.5, + "bot": create_bot( + llm=GeneralLlm( + model="openai/gpt-5.6-terra", + temperature=None, + timeout=gpt_5_timeout, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_GPT_5_6_SOL_HIGH": { + "estimated_cost_per_question": roughly_gpt_5_high_cost * 3, + "bot": create_bot( + llm=GeneralLlm( + model="openai/gpt-5.6-sol", + reasoning_effort="high", + temperature=None, + timeout=gpt_5_timeout, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, "METAC_GROK_4_5_HIGH": { "estimated_cost_per_question": 5 * roughly_one_call_to_grok_4_5_llm, "bot": create_bot(