fix: Update OpenAI client base URL in documentation (#9576)

This commit is contained in:
Xinyuan Tong
2025-08-25 14:06:57 +08:00
committed by GitHub
parent dd6ec02965
commit ca4b86c564

View File

@@ -55,7 +55,7 @@ The URLs should be MCP SSE servers that expose server information and well-docum
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:30323/v1",
base_url="http://localhost:30000/v1",
api_key="sk-123456"
)