From 70cd01854f2558bde195c4b01c4a4f518f15be4b Mon Sep 17 00:00:00 2001 From: jerry Date: Sat, 18 Jul 2026 15:04:44 -0400 Subject: [PATCH] add kimi k3, inkling, and muse spark 1.1 --- .github/workflows/run-bot-aib-tournament.yaml | 42 +++++++++++++++++++ run_bots.py | 31 ++++++++++++++ 2 files changed, 73 insertions(+) diff --git a/.github/workflows/run-bot-aib-tournament.yaml b/.github/workflows/run-bot-aib-tournament.yaml index 915b1b29..acc4a3e5 100644 --- a/.github/workflows/run-bot-aib-tournament.yaml +++ b/.github/workflows/run-bot-aib-tournament.yaml @@ -88,6 +88,48 @@ jobs: #################################### July 2026 new bots #################################### + bot_inkling: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_INKLING" + metac_name: "metac-inkling+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_1: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_MUSE_SPARK_1_1" + metac_name: "metac-muse-spark-1-1+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_kimi_k3: + needs: precache_asknews + uses: ./.github/workflows/run-bot-launcher.yaml + with: + bot_name: "METAC_KIMI_K3" + metac_name: "metac-kimi-k3+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_gpt_5_6_luna: needs: precache_asknews uses: ./.github/workflows/run-bot-launcher.yaml diff --git a/run_bots.py b/run_bots.py index 70116d6c..0968751c 100644 --- a/run_bots.py +++ b/run_bots.py @@ -620,6 +620,37 @@ def get_default_bot_dict() -> dict[str, RunBotConfig]: # NOSONAR mode_base_bot_mapping = { ############################ Bots started in July 2026 ############################ + "METAC_INKLING": { + "estimated_cost_per_question": roughly_gpt_5_cost * 0.405, + "bot": create_bot( + llm=GeneralLlm( + model="openrouter/thinkingmachines/inkling", + temperature=default_temperature, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_MUSE_SPARK_1_1": { + "estimated_cost_per_question": roughly_gpt_5_cost * 0.425, + "bot": create_bot( + llm=GeneralLlm( + model="openrouter/meta/muse-spark-1.1", + temperature=default_temperature, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, + "METAC_KIMI_K3": { + "estimated_cost_per_question": roughly_gpt_5_cost * 1.5, + "bot": create_bot( + GeneralLlm( + model="openrouter/moonshotai/kimi-k3", + temperature=default_temperature, + timeout=kimi_k2_timeout, + ), + ), + "tournaments": TournConfig.aib_and_site, + }, "METAC_GPT_5_6_LUNA": { "estimated_cost_per_question": roughly_gpt_5_cost * 0.6, "bot": create_bot(