Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/run-bot-aib-tournament.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions run_bots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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(
Expand Down
Loading