From 120fa5eaba2477b1e5bf6cfc85a3e3cf563b244d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B4=94=E6=B6=A3?= Date: Thu, 27 Aug 2026 13:32:28 +0800 Subject: [PATCH] docs: register synthorai in provider_endpoints_support.json code-quality fails with 'Found 1 undocumented openai_like providers: synthorai'. check_provider_folders_documented.py requires an entry here for anything listed in llms/openai_like/providers.json. Inserted as text rather than re-serialising the file: it contains charity_engine twice, so a json round-trip drops the first occurrence. Endpoint flags come from the catalog's category counts, not from probing - auth sits on the /v1 prefix so unrouted paths return 401 too. No embedding or rerank models exist, so those are false. --- provider_endpoints_support.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/provider_endpoints_support.json b/provider_endpoints_support.json index 1d8d374c2c4..2fbcd9d6468 100644 --- a/provider_endpoints_support.json +++ b/provider_endpoints_support.json @@ -509,6 +509,24 @@ "a2a": false } }, + "synthorai": { + "display_name": "Synthorai (`synthorai`)", + "url": "https://docs.litellm.ai/docs/providers/synthorai", + "endpoints": { + "chat_completions": true, + "messages": true, + "responses": true, + "embeddings": false, + "image_generations": true, + "audio_transcriptions": true, + "audio_speech": true, + "moderations": false, + "batches": false, + "rerank": false, + "a2a": false, + "interactions": false + } + }, "clarifai": { "display_name": "Clarifai (`clarifai`)", "url": "https://docs.litellm.ai/docs/providers/clarifai",