forked from phoenix/litellm-mirror
* ci(config.yml): add a 'check_code_quality' step Addresses https://github.com/BerriAI/litellm/issues/5991 * ci(config.yml): check why circle ci doesn't pick up this test * ci(config.yml): fix to run 'check_code_quality' tests * fix(__init__.py): fix unprotected import * fix(__init__.py): don't remove unused imports * build(ruff.toml): update ruff.toml to ignore unused imports * fix: fix: ruff + pyright - fix linting + type-checking errors * fix: fix linting errors * fix(lago.py): fix module init error * fix: fix linting errors * ci(config.yml): cd into correct dir for checks * fix(proxy_server.py): fix linting error * fix(utils.py): fix bare except causes ruff linting errors * fix: ruff - fix remaining linting errors * fix(clickhouse.py): use standard logging object * fix(__init__.py): fix unprotected import * fix: ruff - fix linting errors * fix: fix linting errors * ci(config.yml): cleanup code qa step (formatting handled in local_testing) * fix(_health_endpoints.py): fix ruff linting errors * ci(config.yml): just use ruff in check_code_quality pipeline for now * build(custom_guardrail.py): include missing file * style(embedding_handler.py): fix ruff check
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
import time, asyncio
|
|
from openai import AsyncOpenAI
|
|
import uuid
|
|
import traceback
|
|
|
|
|
|
litellm_client = AsyncOpenAI(api_key="test", base_url="http://0.0.0.0:8000")
|
|
|
|
|
|
async def litellm_completion():
|
|
# Your existing code for litellm_completion goes here
|
|
try:
|
|
print("starting embedding calls")
|
|
response = await litellm_client.embeddings.create(
|
|
model="text-embedding-ada-002",
|
|
input=[
|
|
"hello who are you" * 2000,
|
|
"hello who are you tomorrow 1234" * 1000,
|
|
"hello who are you tomorrow 1234" * 1000,
|
|
],
|
|
)
|
|
print(response)
|
|
return response
|
|
|
|
except Exception as e:
|
|
# If there's an exception, log the error message
|
|
with open("error_log.txt", "a") as error_log:
|
|
error_log.write(f"Error during completion: {str(e)}\n")
|
|
pass
|
|
|
|
|
|
async def main():
|
|
start = time.time()
|
|
n = 100 # Number of concurrent tasks
|
|
tasks = [litellm_completion() for _ in range(n)]
|
|
|
|
chat_completions = await asyncio.gather(*tasks)
|
|
|
|
successful_completions = [c for c in chat_completions if c is not None]
|
|
|
|
# Write errors to error_log.txt
|
|
with open("error_log.txt", "a") as error_log:
|
|
for completion in chat_completions:
|
|
if isinstance(completion, str):
|
|
error_log.write(completion + "\n")
|
|
|
|
print(n, time.time() - start, len(successful_completions))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Blank out contents of error_log.txt
|
|
open("error_log.txt", "w").close()
|
|
|
|
asyncio.run(main())
|