From d2bdfecd96c8520ddacd6739c79bd623fc344b29 Mon Sep 17 00:00:00 2001 From: WilliamEspegren Date: Sun, 17 Sep 2023 13:12:49 +0200 Subject: [PATCH] remove unused parameter --- litellm/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/main.py b/litellm/main.py index 2e444f263..e8dfc7b19 100644 --- a/litellm/main.py +++ b/litellm/main.py @@ -1124,7 +1124,7 @@ def config_completion(**kwargs): "No config path set, please set a config path using `litellm.config_path = 'path/to/config.json'`" ) -def stream_chunk_builder(chunks: list, messages: list = None): +def stream_chunk_builder(chunks: list): id = chunks[0]["id"] object = chunks[0]["object"] created = chunks[0]["created"]