clean up print statements

This commit is contained in:
Krrish Dholakia 2023-08-17 20:07:03 -07:00
parent 669199a51b
commit c20ba023c2
2 changed files with 1 additions and 2 deletions

View file

@ -93,7 +93,6 @@ def completion(
openai.organization = litellm.organization openai.organization = litellm.organization
# set API KEY # set API KEY
openai.api_key = api_key or litellm.openai_key or get_secret("OPENAI_API_KEY") openai.api_key = api_key or litellm.openai_key or get_secret("OPENAI_API_KEY")
print(f"value of set openai key {openai.api_key}")
## LOGGING ## LOGGING
logging(model=model, input=messages, additional_args=args, custom_llm_provider=custom_llm_provider, logger_fn=logger_fn) logging(model=model, input=messages, additional_args=args, custom_llm_provider=custom_llm_provider, logger_fn=logger_fn)

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "litellm" name = "litellm"
version = "0.1.420" version = "0.1.421"
description = "Library to easily interface with LLM API providers" description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"] authors = ["BerriAI"]
license = "MIT License" license = "MIT License"