Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 8,629 Bytes
e2552e8 0545e40 e2552e8 0545e40 e2552e8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | """Probe-and-cascade for reasoning effort on /model switch.
We don't maintain a per-model capability table. Instead, the first time a
user picks a model we fire a 1-token ping with the same params we'd use
for real and walk down a cascade (``max`` β ``xhigh`` β ``high`` β β¦)
until the provider stops rejecting us. The result is cached per-model on
the session, so real messages don't pay the probe cost again.
Three outcomes, classified from the 400 error text:
* success β cache the effort that worked
* ``"thinking ... not supported"`` β model doesn't do thinking at all;
cache ``None`` so we stop sending thinking params
* ``"effort ... invalid"`` / synonyms β cascade walks down and retries
Transient errors (5xx, timeout, connection reset) bubble out as
``ProbeInconclusive`` so the caller can complete the switch with a
warning instead of blocking on a flaky provider.
"""
from __future__ import annotations
import asyncio
import logging
from dataclasses import dataclass
from litellm import acompletion
from agent.core.llm_params import UnsupportedEffortError, _resolve_llm_params
logger = logging.getLogger(__name__)
# Cascade: for each user-stated preference, the ordered list of levels to
# try. First success wins. ``max`` is Anthropic-only; ``xhigh`` is also
# supported on current OpenAI GPT-5 models. Providers that don't accept a
# requested level raise ``UnsupportedEffortError`` synchronously (no wasted
# network round-trip) and we advance to the next level.
_EFFORT_CASCADE: dict[str, list[str]] = {
"max": ["max", "xhigh", "high", "medium", "low"],
"xhigh": ["xhigh", "high", "medium", "low"],
"high": ["high", "medium", "low"],
"medium": ["medium", "low"],
"minimal": ["minimal", "low"],
"low": ["low"],
}
_PROBE_TIMEOUT = 15.0
# Keep the probe cheap, but high enough that frontier reasoning models can
# finish a trivial reply instead of tripping a false "output limit reached"
# error during capability detection.
_PROBE_MAX_TOKENS = 64
class ProbeInconclusive(Exception):
"""The probe couldn't reach a verdict (transient network / provider error).
Caller should complete the switch with a warning β the next real call
will re-surface the error if it's persistent.
"""
@dataclass
class ProbeOutcome:
"""What the probe learned. ``effective_effort`` semantics match the cache:
* str β send this level
* None β model doesn't support thinking; strip it
"""
effective_effort: str | None
attempts: int
elapsed_ms: int
note: str | None = None # e.g. "max not supported, falling back"
def _is_thinking_unsupported(e: Exception) -> bool:
"""Model rejected any thinking config.
Matches Anthropic's 'thinking.type.enabled is not supported for this
model' as well as the adaptive variant. Substring-match because the
exact wording shifts across API versions.
"""
s = str(e).lower()
return "thinking" in s and "not supported" in s
def _is_invalid_effort(e: Exception) -> bool:
"""The requested effort level isn't accepted for this model.
Covers both API responses (Anthropic/OpenAI 400 with "invalid", "must
be one of", etc.) and LiteLLM's local validation that fires *before*
the request (e.g. "effort='max' is only supported by Claude Opus 4.6"
β LiteLLM knows max is Opus-4.6-only and raises synchronously). The
cascade walks down on either.
Explicitly returns False when the message is really about thinking
itself (e.g. Anthropic's 4.7 error mentions ``output_config.effort``
in its fix hint, but the actual failure is ``thinking.type.enabled``
being unsupported). That case is caught by ``_is_thinking_unsupported``.
"""
if _is_thinking_unsupported(e):
return False
s = str(e).lower()
if "effort" not in s and "output_config" not in s:
return False
return any(
phrase in s
for phrase in (
"invalid", "not supported", "must be one of", "not a valid",
"unrecognized", "unknown",
# LiteLLM's own pre-flight validation phrasing.
"only supported by", "is only supported",
)
)
def _is_transient(e: Exception) -> bool:
"""Network / provider-side flake. Keep in sync with agent_loop's list.
Also matches by type for ``asyncio.TimeoutError`` β its ``str(e)`` is
empty, so substring matching alone misses it.
"""
if isinstance(e, (asyncio.TimeoutError, TimeoutError)):
return True
s = str(e).lower()
return any(
p in s
for p in (
"timeout", "timed out", "429", "rate limit",
"503", "service unavailable", "502", "bad gateway",
"500", "internal server error", "overloaded", "capacity",
"connection reset", "connection refused", "connection error",
"eof", "broken pipe",
)
)
async def probe_effort(
model_name: str,
preference: str | None,
hf_token: str | None,
) -> ProbeOutcome:
"""Walk the cascade for ``preference`` on ``model_name``.
Returns the first effort the provider accepts, or ``None`` if it
rejects thinking altogether. Raises ``ProbeInconclusive`` only for
transient errors (5xx, timeout) β persistent 4xx that aren't thinking/
effort related bubble as the original exception so callers can surface
them (auth, model-not-found, quota, etc.).
"""
loop = asyncio.get_event_loop()
start = loop.time()
attempts = 0
if not preference:
# User explicitly turned effort off β nothing to probe. A bare
# ping with no thinking params is pointless; just report "off".
return ProbeOutcome(effective_effort=None, attempts=0, elapsed_ms=0)
cascade = _EFFORT_CASCADE.get(preference, [preference])
skipped: list[str] = [] # levels the provider rejected synchronously
last_error: Exception | None = None
for effort in cascade:
try:
params = _resolve_llm_params(
model_name, hf_token, reasoning_effort=effort, strict=True,
)
except UnsupportedEffortError:
# Provider can't even accept this effort name (e.g. "max" on
# HF router). Skip without a network call.
skipped.append(effort)
continue
attempts += 1
try:
await asyncio.wait_for(
acompletion(
messages=[{"role": "user", "content": "ping"}],
max_tokens=_PROBE_MAX_TOKENS,
stream=False,
**params,
),
timeout=_PROBE_TIMEOUT,
)
except Exception as e:
last_error = e
if _is_thinking_unsupported(e):
elapsed = int((loop.time() - start) * 1000)
return ProbeOutcome(
effective_effort=None,
attempts=attempts,
elapsed_ms=elapsed,
note="model doesn't support reasoning, dropped",
)
if _is_invalid_effort(e):
logger.debug("probe: %s rejected effort=%s, trying next", model_name, effort)
continue
if _is_transient(e):
raise ProbeInconclusive(str(e)) from e
# Persistent non-thinking 4xx (auth, quota, model-not-found) β
# let the caller classify & surface.
raise
else:
elapsed = int((loop.time() - start) * 1000)
note = None
if effort != preference:
note = f"{preference} not supported, using {effort}"
return ProbeOutcome(
effective_effort=effort,
attempts=attempts,
elapsed_ms=elapsed,
note=note,
)
# Cascade exhausted without a success. This only happens when every
# level was either rejected synchronously (``UnsupportedEffortError``,
# e.g. preference=max on HF and we also somehow filtered all others)
# or the provider 400'd ``invalid effort`` on every level.
elapsed = int((loop.time() - start) * 1000)
if last_error is not None and not _is_invalid_effort(last_error):
raise last_error
note = (
"no effort level accepted β proceeding without thinking"
if not skipped
else f"provider rejected all efforts ({', '.join(skipped)})"
)
return ProbeOutcome(
effective_effort=None,
attempts=attempts,
elapsed_ms=elapsed,
note=note,
)
|