(fix) proxy - remove errant print statement

This commit is contained in:
ishaan-jaff 2024-01-01 10:48:12 +05:30
parent 6c33fcbf6b
commit 16fb83e007
2 changed files with 2 additions and 2 deletions

View file

@ -1220,7 +1220,7 @@ async def chat_completion(
## Cache Controls
headers = request.headers
print("Request Headers:", headers)
print_verbose(f"Request Headers: {headers}")
cache_control_header = headers.get("Cache-Control", None)
if cache_control_header:
cache_dict = parse_cache_control(cache_control_header)