fix(studio): remove 50-model cap from test endpoint response

Services like PPIO (71 models) and SiliconFlow (111 models) were
truncated to 50. Return the full list.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
fanghanjun
2026-04-15 23:05:01 -07:00
committed by Ma
parent 34234df50d
commit 964f53a526
+1 -1
View File
@@ -1003,7 +1003,7 @@ export function createStudioServer(initialConfig: ProjectConfig, root: string) {
return c.json({
ok: true,
modelCount: probe.models.length,
models: probe.models.slice(0, 50),
models: probe.models,
selectedModel: probe.selectedModel,
detected: {
apiFormat: probe.apiFormat,