(feat) proxy: use orjson

This commit is contained in:
ishaan-jaff 2023-11-30 19:50:47 -08:00
parent ae6e852219
commit c9e21d97cd
3 changed files with 11 additions and 4 deletions

View file

@ -36,7 +36,7 @@ async def litellm_completion():
async def main():
start = time.time()
n = 10 # Number of concurrent tasks
n = 100 # Number of concurrent tasks
tasks = [litellm_completion() for _ in range(n)]
chat_completions = await asyncio.gather(*tasks)