Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ericcccsliu committed Mar 31, 2024
1 parent 6d75e5c commit be31e57
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
Binary file modified api/routes/__pycache__/auth_routes.cpython-311.pyc
Binary file not shown.
4 changes: 0 additions & 4 deletions api/routes/auth_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ async def auth(request: Request, db = Depends(get_db)):

# Extract user email from the user information
email = user_info.get('email')

print(f"EMAIL: {email}")

# Make a request to the members API to retrieve user information by email
async with httpx.AsyncClient() as client:
Expand All @@ -69,8 +67,6 @@ async def auth(request: Request, db = Depends(get_db)):
)
if response.status_code == 200:
member_data = response.json()
print(f"MEMBER DATA")
print(member_data)
if member_data['success']:
user = member_data['result']
first_name = user['firstName']
Expand Down
Binary file modified api/utils/llm_providers/__pycache__/openai.cpython-311.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion api/utils/llm_providers/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ async def openai_generate_response(conversation):
content = chunk.choices[0].delta.content
if content is None:
content = ""
print(content)
yield content

0 comments on commit be31e57

Please sign in to comment.