mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
233 lines
7.2 KiB
Python
233 lines
7.2 KiB
Python
import sys
|
|
import os
|
|
import io, asyncio
|
|
# import logging
|
|
# logging.basicConfig(level=logging.DEBUG)
|
|
sys.path.insert(0, os.path.abspath('../..'))
|
|
|
|
from litellm import completion
|
|
import litellm
|
|
litellm.num_retries = 3
|
|
litellm.success_callback = ["dynamodb"]
|
|
|
|
litellm.set_verbose = True
|
|
|
|
|
|
import time
|
|
import pytest
|
|
|
|
def verify_dynamo_logs():
|
|
num_requests = 2
|
|
pass
|
|
|
|
|
|
def pre_request():
|
|
log_file = open("dynamo.log", "a+")
|
|
|
|
# Clear the contents of the file by truncating it
|
|
log_file.truncate(0)
|
|
|
|
# Save the original stdout so that we can restore it later
|
|
original_stdout = sys.stdout
|
|
# Redirect stdout to the file
|
|
sys.stdout = log_file
|
|
|
|
return original_stdout, log_file
|
|
|
|
|
|
import re
|
|
def verify_log_file(log_file_path):
|
|
|
|
with open(log_file_path, 'r') as log_file:
|
|
log_content = log_file.read()
|
|
|
|
# Define the pattern to search for in the log file
|
|
pattern = r"Response from DynamoDB:{.*?}"
|
|
|
|
# Find all matches in the log content
|
|
matches = re.findall(pattern, log_content)
|
|
|
|
# Print the DynamoDB success log matches
|
|
print("DynamoDB Success Log Matches:")
|
|
for match in matches:
|
|
print(match)
|
|
|
|
# Print the total count of lines containing the specified response
|
|
print(f"Total occurrences of specified response: {len(matches)}")
|
|
|
|
# Count the occurrences of successful responses (status code 200 or 201)
|
|
success_count = sum(1 for match in matches if "'HTTPStatusCode': 200" in match or "'HTTPStatusCode': 201" in match)
|
|
|
|
# Print the count of successful responses
|
|
print(f"Count of successful responses from DynamoDB: {success_count}")
|
|
assert success_count == 5
|
|
|
|
|
|
|
|
|
|
|
|
def test_dynamo_logging_async():
|
|
try:
|
|
# pre
|
|
original_stdout, log_file = pre_request()
|
|
async def _test():
|
|
return await litellm.acompletion(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content":"This is a test"}],
|
|
max_tokens=100,
|
|
temperature=0.7,
|
|
user = "ishaan-2"
|
|
)
|
|
response = asyncio.run(_test())
|
|
print(f"response: {response}")
|
|
time.sleep(1)
|
|
except litellm.Timeout as e:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"An exception occurred - {e}")
|
|
finally:
|
|
# post, close log file and verify
|
|
# Reset stdout to the original value
|
|
sys.stdout = original_stdout
|
|
# Close the file
|
|
log_file.close()
|
|
verify_log_file("dynamo.log")
|
|
|
|
|
|
|
|
test_dynamo_logging_async()
|
|
|
|
|
|
def test_dynamo_logging_async_stream():
|
|
try:
|
|
litellm.set_verbose = True
|
|
async def _test():
|
|
response = await litellm.acompletion(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content":"This is a test"}],
|
|
max_tokens=100,
|
|
temperature=0.7,
|
|
user = "ishaan-2",
|
|
stream=True
|
|
)
|
|
async for chunk in response:
|
|
pass
|
|
asyncio.run(_test())
|
|
except litellm.Timeout as e:
|
|
pass
|
|
except Exception as e:
|
|
pytest.fail(f"An exception occurred - {e}")
|
|
|
|
# test_dynamo_logging_async_stream()
|
|
|
|
# @pytest.mark.skip(reason="beta test - checking langfuse output")
|
|
# def test_langfuse_logging():
|
|
# try:
|
|
# pre_langfuse_setup()
|
|
# litellm.set_verbose = True
|
|
# response = completion(model="claude-instant-1.2",
|
|
# messages=[{
|
|
# "role": "user",
|
|
# "content": "Hi 👋 - i'm claude"
|
|
# }],
|
|
# max_tokens=10,
|
|
# temperature=0.2,
|
|
# )
|
|
# print(response)
|
|
# # time.sleep(5)
|
|
# # # check langfuse.log to see if there was a failed response
|
|
# # search_logs("langfuse.log")
|
|
|
|
# except litellm.Timeout as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# pytest.fail(f"An exception occurred - {e}")
|
|
|
|
# test_langfuse_logging()
|
|
|
|
# @pytest.mark.skip(reason="beta test - checking langfuse output")
|
|
# def test_langfuse_logging_stream():
|
|
# try:
|
|
# litellm.set_verbose=True
|
|
# response = completion(model="anyscale/meta-llama/Llama-2-7b-chat-hf",
|
|
# messages=[{
|
|
# "role": "user",
|
|
# "content": "this is a streaming test for llama2 + langfuse"
|
|
# }],
|
|
# max_tokens=20,
|
|
# temperature=0.2,
|
|
# stream=True
|
|
# )
|
|
# print(response)
|
|
# for chunk in response:
|
|
# pass
|
|
# # print(chunk)
|
|
# except litellm.Timeout as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# print(e)
|
|
|
|
# # test_langfuse_logging_stream()
|
|
|
|
# @pytest.mark.skip(reason="beta test - checking langfuse output")
|
|
# def test_langfuse_logging_custom_generation_name():
|
|
# try:
|
|
# litellm.set_verbose=True
|
|
# response = completion(model="gpt-3.5-turbo",
|
|
# messages=[{
|
|
# "role": "user",
|
|
# "content": "Hi 👋 - i'm claude"
|
|
# }],
|
|
# max_tokens=10,
|
|
# metadata = {
|
|
# "langfuse/foo": "bar",
|
|
# "langsmith/fizz": "buzz",
|
|
# "prompt_hash": "asdf98u0j9131123"
|
|
# }
|
|
# )
|
|
# print(response)
|
|
# except litellm.Timeout as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# pytest.fail(f"An exception occurred - {e}")
|
|
# print(e)
|
|
|
|
# # test_langfuse_logging_custom_generation_name()
|
|
# @pytest.mark.skip(reason="beta test - checking langfuse output")
|
|
# def test_langfuse_logging_function_calling():
|
|
# function1 = [
|
|
# {
|
|
# "name": "get_current_weather",
|
|
# "description": "Get the current weather in a given location",
|
|
# "parameters": {
|
|
# "type": "object",
|
|
# "properties": {
|
|
# "location": {
|
|
# "type": "string",
|
|
# "description": "The city and state, e.g. San Francisco, CA",
|
|
# },
|
|
# "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]},
|
|
# },
|
|
# "required": ["location"],
|
|
# },
|
|
# }
|
|
# ]
|
|
# try:
|
|
# response = completion(model="gpt-3.5-turbo",
|
|
# messages=[{
|
|
# "role": "user",
|
|
# "content": "what's the weather in boston"
|
|
# }],
|
|
# temperature=0.1,
|
|
# functions=function1,
|
|
# )
|
|
# print(response)
|
|
# except litellm.Timeout as e:
|
|
# pass
|
|
# except Exception as e:
|
|
# print(e)
|
|
|
|
# # test_langfuse_logging_function_calling()
|
|
|
|
|
|
|