Error listings

All error pages - page 27

LiteLLM LiteLLM / OpenAI API Updated May 20, 2026

LiteLLM Unthrottled concurrent LLM requests cause HTTP 429 and cascading KeyError crash

Prevent LiteLLM library from flooding LLM endpoints with unbounded concurrent requests causing 429 errors; fix cascading KeyError crash when retries exhaust Includes evidence for LiteLLM / OpenAI API troubleshooting demand.

KeyError: 'toc_detected' caused by unthrottled concurrent asyncio.gather calls triggering HTTP 429 Too Many Requests from LLM API — empty JSON parse returns {} then direct dict access crashes
AI Coding Tools OpenAI API / LangChain Updated May 20, 2026

OpenAI RAG LangChain tool calling incompatible with withStructuredOutput()

Make LangChain tool calling work together with OpenAI's structured output feature; resolve incompatibility between tool definitions and response_format=JSON_OBJECT Includes evidence for OpenAI API / LangChain troubleshooting demand.

OpenAI RAG LangChain tool calling is not working/compatible with withStructuredOutput() — tool calls fail silently when structured output format is enabled
GitHub Actions GitHub Actions Updated May 20, 2026

actions/checkout Fails: 'repository not found' AND 'Could not read Username' — GITHUB_TOKEN Missing contents Scope

Developer's GitHub Actions workflow using actions/checkout fails with credential prompt disabled error after restricting GITHUB_TOKEN permissions to non-default scopes, causing private/internal repo checkout to fail Includes evidence for GitHub Actions troubleshooting demand.

could not read Username for 'https://github.com': terminal prompts disabled
Cloudflare Cloudflare Updated May 20, 2026

Cloudflare Workers Unhandled Exception — Internal Server Error 500 in Edge Runtime

Developer's Cloudflare Workers edge function throws unhandled exceptions during HTTP request processing, returning 500 errors to end-users — needs debugging tools and error handling patterns specific to Workers runtime Includes evidence for Cloudflare troubleshooting demand.

Unhandled exception in Cloudflare Worker caught during request handler execution
GitHub Actions GitHub Actions Updated May 20, 2026

GitHub Actions Workflow Throws 'Resource Not Accessible by Integration' When Custom Permission Scopes Exclude contents

Developer gets 'Resource not accessible by integration' error in GitHub Actions when defining permissions in workflow YAML without including contents scope — causes silent failures in deployment, dependency updates, security scanners Includes evidence for GitHub Actions troubleshooting demand.

Resource not accessible by integration
LiteLLM LiteLLM Updated May 20, 2026

LiteLLM Proxy Model Routing Failure — BadRequestError When Third-Party Model Mapping Misconfigured

Developer using LiteLLM proxy server encounters model routing errors when connecting to third-party APIs — models specified in config.yaml not available or incorrectly mapped, causing production inference failures and API billing waste Includes evidence for LiteLLM troubleshooting demand.

litellm.exceptions.BadRequestError: xxx: (invalid_request_error) Model: 'xxx' doesn't exist
Ollama Ollama Updated May 20, 2026

Ollama 'Connection Refused' — Local LLM Service Unreachable on Port 11434

Developer tries to run Ollama locally but gets connection refused errors — service isn't running, port conflict, or firewall blocking local connections — preventing local LLM inference Includes evidence for Ollama troubleshooting demand.

Error: connection refused at localhost:11434 OR dial tcp [::1]:11434: connect: connection refused
Anthropic API Anthropic API Updated May 20, 2026

Anthropic Bedrock Streaming Errors Cause AttributeError Instead of Proper APIStatusError

Fix unhandled streaming error SSE events from Bedrock that crash with AttributeError instead of raising typed APIStatusError exceptions Includes evidence for Anthropic API troubleshooting demand.

Streaming error SSE event causes AttributeError: 'NoneType' object has no attribute 'model' when Bedrock cross-region inference profiles return rate_limit error frames
OpenAI API OpenAI API Updated May 20, 2026

AzureOpenAI AAD Bearer Token Returns 401 Unauthorized After SDK Upgrade

Fix 401 authentication error when using Azure AD tokens with Azure OpenAI SDK after client upgrade Includes evidence for OpenAI API troubleshooting demand.

AzureOpenAI with AAD bearer token passed via api_key returns 401 Unauthorized after upgrading to 2.34.0+
OpenAI API OpenAI API Updated May 20, 2026

Background Response Failures Lack Stable Error Code Mapping in OpenAI Python SDK

Add stable error code mapping for background/async OpenAI API responses so callers can distinguish retryable vs non-retryable failures Includes evidence for OpenAI API troubleshooting demand.

Background responses failures lack a stable code/name that maps to an exception class — asynchronous mode has no deterministic error contract
Cloudflare Cloudflare Updated May 20, 2026

Cloudflare Go SDK MX Records Misclassified as ARecords Losing Priority Field

Fix Cloudflare Go SDK DNS RecordResponse union type so MX records are correctly discriminated with proper priority field values Includes evidence for Cloudflare troubleshooting demand.

DNS RecordResponse union type discriminator misclassifies MX records as ARecord, losing priority field — r.AsUnion() returns wrong type for MX DNS records
Anthropic API Anthropic API Updated May 20, 2026

LangChain ChatAnthropic Fails on base64 File Blocks With Non-PDF Text Mime Types

Fix Anthropic document block translation in LangChain that rejects CSV/text base64 content with invalid media_type validation errors Includes evidence for Anthropic API troubleshooting demand.

langchain-anthropic: base64 file blocks with non-PDF text mime types fail with media_type validation error
LiteLLM LiteLLM Updated May 20, 2026

LiteLLM Redis Spend Counter Leak Causes Phantom BudgetExceededError (429)

Fix LiteLLM proxy that incorrectly returns HTTP 429 BudgetExceededError for users who haven't exceeded their budget due to Redis counter accumulation bug Includes evidence for LiteLLM troubleshooting demand.

reserve_budget_for_request() leaks Redis spend counters — phantom BudgetExceededError despite actual database spend being near $0
Anthropic API Anthropic API Updated May 20, 2026

Anthropic Streaming SSE Error Event Causes AttributeError NoneType

Fix AttributeError crash when receiving streaming error SSE events via Anthropic Python SDK — breaks production streaming pipelines Includes evidence for Anthropic API troubleshooting demand.

Streaming error SSE event causes AttributeError: 'NoneType' object has no attribute errors in anthropic-sdk-python
LiteLLM LiteLLM Updated May 20, 2026

LiteLLM BudgetExceededError Phantom Redis Counter Inflation Blocks Production Users

Fix phantom BudgetExceededError caused by leaking Redis spend counters in LiteLLM proxy — real database spend near $0 but users blocked at budget limit Includes evidence for LiteLLM troubleshooting demand.

Budget has been exceeded! EndUser=<id> Current cost: $52.19, Max budget: $50.0 — DB spend shows $0.001 while Redis counter reports $52 (BudgetExceededError HTTP 429)
Anthropic API Anthropic API Updated May 20, 2026

Anthropic Bedrock SDK AttributeError on error SSE events — rate-limit/model-not-found silently swallowed

Developer using Anthropic SDK with AWS Bedrock backend encounters incorrect behavior where Bedrock error responses (rate limits, model not found) are routed as completion events, preventing proper error handling in production pipelines. Includes evidence for Anthropic API troubleshooting demand.

AWSEventStreamDecoder emits rate_limit_error and model_not_found errors as completion events instead of proper exceptions — causes silent failures
AI Coding Tools Claude Code Updated May 20, 2026

Claude Code image processing failures cause massive token waste via Anthropic API

Developer experiencing repeated API errors where images fail to process, burning through their 5-hour usage window without getting actual image results; wants fix or workaround. Includes evidence for Claude Code troubleshooting demand.

an image in the conversation could not be processed and was removed