bump: version 0.7.1 → 0.7.2
This commit is contained in:
parent
ad8ffa9014
commit
52b43ef8c1
@ -1,29 +1,54 @@
|
||||
# #### What this tests ####
|
||||
# # This tests if logging to the supabase integration actually works
|
||||
# # pytest mistakes intentional bad calls as failed tests -> [TODO] fix this
|
||||
# import sys, os
|
||||
# import traceback
|
||||
# import pytest
|
||||
#### What this tests ####
|
||||
# This tests if logging to the supabase integration actually works
|
||||
# pytest mistakes intentional bad calls as failed tests -> [TODO] fix this
|
||||
import sys, os
|
||||
import traceback
|
||||
import pytest
|
||||
|
||||
# sys.path.insert(0, os.path.abspath('../..')) # Adds the parent directory to the system path
|
||||
# import litellm
|
||||
# from litellm import embedding, completion
|
||||
sys.path.insert(0, os.path.abspath('../..')) # Adds the parent directory to the system path
|
||||
import litellm
|
||||
from litellm import embedding, completion
|
||||
|
||||
# litellm.input_callback = ["supabase"]
|
||||
# litellm.success_callback = ["supabase"]
|
||||
# litellm.failure_callback = ["supabase"]
|
||||
litellm.input_callback = ["supabase"]
|
||||
litellm.success_callback = ["supabase"]
|
||||
litellm.failure_callback = ["supabase"]
|
||||
|
||||
|
||||
# litellm.set_verbose = False
|
||||
litellm.set_verbose = False
|
||||
|
||||
# user_message = "Hello, how are you?"
|
||||
# messages = [{ "content": user_message,"role": "user"}]
|
||||
user_message = "Hello, how are you?"
|
||||
messages = [{ "content": user_message,"role": "user"}]
|
||||
|
||||
|
||||
# #openai call
|
||||
# response = completion(
|
||||
# model="gpt-3.5-turbo",
|
||||
# messages=[{"role": "user", "content": "Hi 👋 - i'm openai"}],
|
||||
# user="ishaan22"
|
||||
# )
|
||||
#openai call
|
||||
response = completion(
|
||||
model="gpt-3.5-turbo",
|
||||
messages=[{"role": "user", "content": "Hi 👋 - i'm openai"}],
|
||||
user="ishaan22"
|
||||
)
|
||||
|
||||
import asyncio
|
||||
import time
|
||||
async def completion_call():
|
||||
try:
|
||||
response = await litellm.acompletion(
|
||||
model="gpt-3.5-turbo", messages=messages, stream=True
|
||||
)
|
||||
complete_response = ""
|
||||
start_time = time.time()
|
||||
async for chunk in response:
|
||||
chunk_time = time.time()
|
||||
print(chunk)
|
||||
complete_response += chunk["choices"][0]["delta"].get("content", "")
|
||||
print(complete_response)
|
||||
print(f"time since initial request: {chunk_time - start_time:.5f}")
|
||||
|
||||
if chunk["choices"][0].get("finish_reason", None) != None:
|
||||
print("🤗🤗🤗 DONE")
|
||||
except:
|
||||
print(f"error occurred: {traceback.format_exc()}")
|
||||
pass
|
||||
|
||||
|
||||
asyncio.run(completion_call())
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "litellm"
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
description = "Library to easily interface with LLM API providers"
|
||||
authors = ["BerriAI"]
|
||||
license = "MIT License"
|
||||
@ -26,7 +26,7 @@ requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.commitizen]
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
version_files = [
|
||||
"pyproject.toml:^version"
|
||||
]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user