From 7ead6f65da65362785b73c2623199b46434e8ad3 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Fri, 5 Apr 2024 16:13:55 -0700 Subject: [PATCH] ci/cd print commit hash to use --- .circleci/config.yml | 3 +++ litellm/__init__.py | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c9e4ddd0a..2d7d0f839 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,9 @@ jobs: steps: - checkout + - run: + name: Show git commit hash + command: echo "Git commit hash: $CIRCLE_SHA1" - run: name: Check if litellm dir was updated or if pyproject.toml was modified diff --git a/litellm/__init__.py b/litellm/__init__.py index 3d4ea021a..23d83fdbf 100644 --- a/litellm/__init__.py +++ b/litellm/__init__.py @@ -7,7 +7,6 @@ from litellm.proxy._types import KeyManagementSystem, KeyManagementSettings import httpx import dotenv -print("IMPORT LITELLM on Ishaan's commit") # noqa dotenv.load_dotenv() #############################################