From 925e785a6ab3806216e2396910e8981ab4ade3ea Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 23 Mar 2024 17:59:54 -0700 Subject: [PATCH] (fix) update locustfile --- litellm/proxy/proxy_load_test/locustfile.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/litellm/proxy/proxy_load_test/locustfile.py b/litellm/proxy/proxy_load_test/locustfile.py index 263c871efda..ebfca80ad30 100644 --- a/litellm/proxy/proxy_load_test/locustfile.py +++ b/litellm/proxy/proxy_load_test/locustfile.py @@ -18,7 +18,10 @@ class MyUser(HttpUser): payload = { "model": "fake-openai-endpoint", "messages": [ - {"role": "system", "content": "You are a chat bot."}, + { + "role": "system", + "content": "this is a very sweet test message from ishaan", + }, {"role": "user", "content": "Hello, how are you?"}, ], # Add more data as necessary