Skip to content

Commit c946e67

Browse files
committed
Added backup host key
1 parent b2e8576 commit c946e67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/api/models.api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async function processModelsResponse(response: Response): Promise<Response> {
100100
}
101101
})
102102
.sort((a: OpenAIModel, b: OpenAIModel) => a.id.localeCompare(b.id))
103-
console.debug(`Found ${models.length} models: ${models.map((model) => model.id).join(", ")}`)
103+
console.debug(`Found ${models.length} models`)
104104
return new Response(JSON.stringify(models), {status: 200})
105105
}
106106

0 commit comments

Comments
 (0)