We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc7fee9 commit 42d5ecfCopy full SHA for 42d5ecf
eval_protocol/proxy/proxy_core/app.py
@@ -208,6 +208,7 @@ async def chat_completion_with_full_metadata(
208
encoded_base_url: Optional[str] = None,
209
config: ProxyConfig = Depends(get_config),
210
redis_client: redis.Redis = Depends(get_redis),
211
+ _: None = Depends(require_auth),
212
):
213
params = ChatParams(
214
project_id=project_id,
@@ -232,6 +233,7 @@ async def chat_completion_with_project_only(
232
233
request: Request,
234
235
236
237
238
params = ChatParams(project_id=project_id)
239
return await handle_chat_completion(
0 commit comments