mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-26 03:04:13 +00:00
(fix) passthrough - allow internal users to access /anthropic (#6843)
* fix /anthropic/ * test llm_passthrough_router * fix test_gemini_pass_through_endpoint
This commit is contained in:
parent
50d2510b60
commit
a7d5536872
5 changed files with 22 additions and 8 deletions
|
@ -192,6 +192,10 @@ class RouteChecks:
|
|||
return True
|
||||
if "/langfuse/" in route:
|
||||
return True
|
||||
if "/anthropic/" in route:
|
||||
return True
|
||||
if "/azure/" in route:
|
||||
return True
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue