From 376897e7309d3939833755f9ca1db9423bb29d8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8E=98=E6=9D=83=20=E9=A9=AC?= Date: Sat, 9 Dec 2023 16:26:25 +0800 Subject: [PATCH] feat: rebase geekan:env_refactor --- tests/metagpt/test_gpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/metagpt/test_gpt.py b/tests/metagpt/test_gpt.py index 291531122..dda5e6252 100644 --- a/tests/metagpt/test_gpt.py +++ b/tests/metagpt/test_gpt.py @@ -20,7 +20,7 @@ class TestGPT: assert len(answer) > 0 def test_gptapi_ask_batch(self, llm_api): - answer = llm_api.ask_batch(["请扮演一个Google Python专家工程师,如果理解,回复明白", "写一个hello world"]) + answer = llm_api.ask_batch(["请扮演一个Google Python专家工程师,如果理解,回复明白", "写一个hello world"], timeout=60) assert len(answer) > 0 def test_llm_api_ask_code(self, llm_api):