From 65bf744ed3959382fb601f50febfd7eef3fd98c8 Mon Sep 17 00:00:00 2001 From: Guodong Date: Wed, 9 Oct 2024 23:00:42 +0800 Subject: [PATCH] Update test_llms_zhipuai.py --- .../llms/llama-index-llms-zhipuai/tests/test_llms_zhipuai.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/llama-index-integrations/llms/llama-index-llms-zhipuai/tests/test_llms_zhipuai.py b/llama-index-integrations/llms/llama-index-llms-zhipuai/tests/test_llms_zhipuai.py index 974e8ae1d8d15..90f0348a47c2f 100644 --- a/llama-index-integrations/llms/llama-index-llms-zhipuai/tests/test_llms_zhipuai.py +++ b/llama-index-integrations/llms/llama-index-llms-zhipuai/tests/test_llms_zhipuai.py @@ -25,6 +25,3 @@ def test_completion(): api_key = os.environ.get("ZHIPUAI_API_KEY") llm = ZhipuAI(model=model, api_key=api_key) assert llm.complete("who are you") - - -