Skip to content

Commit

Permalink
fix: remove unnecessary openai print (#1333)
Browse files Browse the repository at this point in the history
Co-authored-by: cpacker <[email protected]>
  • Loading branch information
sarahwooders and cpacker authored May 3, 2024
1 parent 66f8413 commit 6f8f514
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion memgpt/llm_api/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ def openai_chat_completions_request(
try:
response = requests.post(url, headers=headers, json=data)
# printd(f"response = {response}, response.text = {response.text}")
print(f"response = {response}, response.text = {response.text}")
response.raise_for_status() # Raises HTTPError for 4XX/5XX status

response = response.json() # convert to dict from string
Expand Down

0 comments on commit 6f8f514

Please sign in to comment.