mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-07 08:26:10 +00:00
Merge pull request #13622 from BerriAI/fix-passthrough-deletion-failure
Fix query passthrough deletion
This commit is contained in:
commit
4df07a5060
1 changed files with 1 additions and 1 deletions
|
|
@ -4931,7 +4931,7 @@ export const deletePassThroughEndpointsCall = async (
|
|||
try {
|
||||
let url = proxyBaseUrl
|
||||
? `${proxyBaseUrl}/config/pass_through_endpoint?endpoint_id=${endpointId}`
|
||||
: `/config/pass_through_endpoint${endpointId}`;
|
||||
: `/config/pass_through_endpoint?endpoint_id=${endpointId}`;
|
||||
|
||||
//message.info("Requesting model data");
|
||||
const response = await fetch(url, {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue