Skip to main content
Glama
libragik

universal-ai-agent-bridge

by libragik

llm_compare

Compare responses to the exact same prompt across multiple models or providers in parallel, enabling side-by-side evaluation to choose the best output.

Instructions

Benchmark and compare responses to the exact same prompt across multiple models or providers in parallel (e.g. Dahl vs DeepSeek vs Groq vs Ollama).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
promptYesThe prompt to send to all candidate models.
candidatesYesList of target models/providers to compare.
system_promptNoOptional system prompt for all candidates.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden. It discloses parallel execution and the use of an identical prompt, but omits other behavioral aspects such as required credentials, potential for network calls, error handling, or return format. This is minimal transparency for a tool that makes external calls.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence that front-loads the core action and provides concrete examples. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is moderately complex with nested candidate objects, but the description does not describe the output format, error behavior, or how to interpret results. With no output schema, this is a significant gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides descriptions for all three parameters, and the description adds no additional parameter-level information. Since schema coverage is 100%, the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('benchmark and compare') with a clear resource ('responses to the exact same prompt') and scope ('across multiple models or providers in parallel'). It also names example providers, making the purpose unmistakable and distinguishing it from potential siblings like llm_council.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when comparing models but does not explicitly state when to use it vs alternatives. It does not mention any sibling tools or exclusions, leaving the decision to the agent's inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.