mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-27 03:34:10 +00:00
fix(azure.py): adding support for aiohttp calls on azure + openai
This commit is contained in:
parent
bbc2cb43aa
commit
1d46891ceb
7 changed files with 93 additions and 30 deletions
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue