Timothy J. Baek 1 년 전
부모
커밋
a59fb6b9eb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/apps/litellm/main.py

+ 1 - 1
backend/apps/litellm/main.py

@@ -154,7 +154,7 @@ async def get_models(user=Depends(get_current_user)):
 async def proxy(path: str, request: Request, user=Depends(get_verified_user)):
     body = await request.body()
 
-    url = "http://localhost:4000/v1"
+    url = "http://localhost:4000"
 
     target_url = f"{url}/{path}"