Skip to content

Commit

Permalink
Fix log call
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuzmik committed Nov 28, 2023
1 parent 0818ea5 commit 48304fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lib_integration/openai/test_openai_autologger.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def comet_setup():
def test_openai_autologger__chain_exists__openai_call_was_made__openai_call_added_to_chain_as_node(comet_setup):
import openai

LOGGER.error("ENV INFO:", os.environ["OPENAI_API_KEY"][:5] + " " + os.environ["OPENAI_ORG_ID"][:5])
LOGGER.error(f"ENV INFO: {os.environ['OPENAI_API_KEY'][:5]} {os.environ['OPENAI_ORG_ID'][:5]}")

comet_llm.start_chain(
inputs={"any-name": "any-input"},
Expand Down

0 comments on commit 48304fa

Please sign in to comment.