惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
Engineering at Meta
Engineering at Meta
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
罗磊的独立博客
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog RSS Feed
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
V2EX

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
OpenAI-Compatible Base URL Troubleshooting: 7 Checks Befo...
alice kelly · 2026-06-14 · via DEV Community

An OpenAI-compatible base URL is supposed to make model switching boring: change the endpoint, keep the SDK, and move on. In real projects, the first run often fails with a 401, 404, 429, or a model-not-found error.

Here is the checklist I use before blaming the SDK.

1. Confirm the base URL includes the right API prefix

Most OpenAI-compatible gateways expect a /v1 prefix:

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_RELAY_KEY",
    base_url="https://api.wappkit.com/v1",
)

If you use only the domain, some SDK calls may resolve to the wrong path. Check the provider's docs and copy the exact base URL format.

2. Make sure the key belongs to that gateway

A common mistake is mixing keys:

  • OpenAI key with relay base URL
  • Relay key with OpenAI base URL
  • Old test key from a disabled project
  • Key copied with a leading or trailing space

When you see 401 Unauthorized, print the first and last few characters of the key locally and compare it with the dashboard. Do not log the full key.

3. Check the model name from the live list

Do not guess model names from memory. Gateway model names can change as upstream availability changes.

Before using gpt-5.5, gpt-5.4, or a Claude Code model, check the current model list. Copy the model id exactly.

resp = client.chat.completions.create(
    model="gpt-5.5",
    messages=[{"role": "user", "content": "Say hello in one sentence."}],
)

If the model name is wrong, you usually get 404, model_not_found, or a gateway-specific validation error.

4. Test with the smallest possible request

Before debugging your whole app, run one tiny request:

resp = client.chat.completions.create(
    model="gpt-5.5",
    messages=[{"role": "user", "content": "ping"}],
    max_tokens=20,
)
print(resp.choices[0].message.content)

If this works, the base URL, key, and model are probably fine. Your bug is likely in the app layer: streaming, tool calling, message format, proxy settings, or retry logic.

5. Separate rate limits from auth errors

401 usually means key or account state.

429 usually means rate limit, balance, or temporary traffic control.

If you get 429, check the billing page and wait before retrying. A tight retry loop can make the problem worse.

6. Check the status page before changing code

When the same request worked yesterday and fails today, do not rewrite the integration first. Check the status page. If there is an upstream incident, your code may be fine.

This is especially useful with relay services because there is one more layer between your app and the model provider.

7. Keep one known-good curl command

Save a minimal curl command in your project docs:

curl https://api.wappkit.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_RELAY_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "messages": [{"role": "user", "content": "ping"}],
    "max_tokens": 20
  }'

When the app breaks, run the curl command first. If curl fails, debug account, gateway, model, or network. If curl works, debug your app.

OpenAI-compatible base URLs are simple once the basics are clean: exact /v1 endpoint, matching API key, live model name, small test request, billing check, status check, and one known-good curl command.