diff --git a/.circleci/config.yml b/.circleci/config.yml index 4b0ae434f..e44394280 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,13 @@ version: 2.1 jobs: installing_litellm_on_python: - local_testing: docker: - image: circleci/python:3.8 working_directory: ~/project steps: - checkout - - - run: + - run: name: Install Dependencies command: | python -m pip install --upgrade pip @@ -20,7 +18,7 @@ jobs: pip install click pip install jinja2 pip install tokenizers - pip install openai + pip install openai - run: name: Check if litellm dir was updated or if pyproject.toml was modified - run: diff --git a/litellm/tests/test_completion.py b/litellm/tests/test_completion.py index 729bf7bd9..e54617bd9 100644 --- a/litellm/tests/test_completion.py +++ b/litellm/tests/test_completion.py @@ -69,7 +69,7 @@ def test_completion_claude(): response = completion( model="claude-instant-1", messages=messages, request_timeout=10 ) - # Add any assertions here to check response args + # Add any assertions, here to check response args print(response) print(response.usage) print(response.usage.completion_tokens)