fix(azure.py): adding support for aiohttp calls on azure + openai

This commit is contained in:
Krrish Dholakia 2023-11-09 10:40:26 -08:00
parent bbc2cb43aa
commit 1d46891ceb
7 changed files with 93 additions and 30 deletions

View file

@ -1,6 +1,7 @@
from litellm import completion, stream_chunk_builder
import litellm
import os, dotenv
import pytest
dotenv.load_dotenv()
user_message = "What is the current weather in Boston?"
@ -23,6 +24,7 @@ function_schema = {
},
}
@pytest.mark.skip
def test_stream_chunk_builder():
litellm.set_verbose = False
litellm.api_key = os.environ["OPENAI_API_KEY"]