diff --git a/.github/workflows/run-bot-aib-tournament.yaml b/.github/workflows/run-bot-aib-tournament.yaml index 02b7d377..f1081091 100644 --- a/.github/workflows/run-bot-aib-tournament.yaml +++ b/.github/workflows/run-bot-aib-tournament.yaml @@ -88,6 +88,34 @@ jobs: #################################### August 2026 new bots #################################### + bot_qwen_3_8_flash: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_QWEN_3_8_FLASH" + metac_name: "metac-qwen-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_glm_5_3_flash: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_GLM_5_3_FLASH" + metac_name: "metac-glm-5-3-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_glm_5_3: needs: precache_asknews uses: ./.github/workflows/run-bot-launcher.yaml diff --git a/run_bots.py b/run_bots.py index be898c12..893480ae 100644 --- a/run_bots.py +++ b/run_bots.py @@ -620,6 +620,26 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR mode_base_bot_mapping = { ############################ Bots started in August 2026 ############################ + "METAC_QWEN_3_8_FLASH": { + "estimated_cost_per_question": roughly_gpt_5_cost * 0.047, + "bot": create_bot( + llm=GeneralLlm( + model="openrouter/qwen/qwen3.8-flash", + temperature=default_temperature, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_GLM_5_3_FLASH": { + "estimated_cost_per_question": roughly_gpt_5_cost * 0.05, + "bot": create_bot( + llm=GeneralLlm( + model="openrouter/z-ai/glm-5.3-flash", + temperature=default_temperature, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, "METAC_GLM_5_3": { "estimated_cost_per_question": roughly_gpt_5_cost * 0.44, "bot": create_bot(