From b11f58587fb2735de61ad44face178db891f217d Mon Sep 17 00:00:00 2001 From: patcher99 Date: Wed, 27 Mar 2024 13:39:36 +0530 Subject: [PATCH] fix test --- tests/test_openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_openai.py b/tests/test_openai.py index 99511a6..8ed9941 100644 --- a/tests/test_openai.py +++ b/tests/test_openai.py @@ -58,7 +58,7 @@ def test_chat_completion_with_gpt_3_5_turbo(): chat_completions_resp = client.chat.completions.create( model="gpt-3.5-turbo", max_tokens=1, - messages=[{"role": "user", "content": "What is Grafana?"}] + messages=[{"role": "user", "content": "What is LLM Observability?"}] ) assert chat_completions_resp.object == 'chat.completion'