From 0aaa5fcfe620ea6b2426d418f35a43e0caa9e8e4 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 263c871efd..ebfca80ad3 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