Browse Source

Remove redundant logging

Andrew Phillips 10 months ago
parent
commit
3eba963d03
1 changed files with 0 additions and 2 deletions
  1. 0 2
      backend/apps/openai/main.py

+ 0 - 2
backend/apps/openai/main.py

@@ -435,8 +435,6 @@ async def generate_chat_completion(
     url = app.state.config.OPENAI_API_BASE_URLS[idx]
     key = app.state.config.OPENAI_API_KEYS[idx]
 
-    print(payload)
-
     headers = {}
     headers["Authorization"] = f"Bearer {key}"
     headers["Content-Type"] = "application/json"