forked from phoenix/litellm-mirror
(fix) proxy - remove errant print statement
This commit is contained in:
parent
6c33fcbf6b
commit
16fb83e007
2 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ class LangFuseLogger:
|
|||
# end of processing langfuse ########################
|
||||
input = prompt
|
||||
output = response_obj["choices"][0]["message"].json()
|
||||
print(
|
||||
print_verbose(
|
||||
f"OUTPUT IN LANGFUSE: {output}; original: {response_obj['choices'][0]['message']}"
|
||||
)
|
||||
self._log_langfuse_v2(
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue