From 68a425427c8cd524ca40e069fad9a4ce8959c467 Mon Sep 17 00:00:00 2001 From: Lucas Fayoux Date: Tue, 15 Aug 2023 16:38:19 -0400 Subject: [PATCH] fix chat test_valid_model test --- tests/sync/test_chat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sync/test_chat.py b/tests/sync/test_chat.py index f303f2c6d..931b82155 100644 --- a/tests/sync/test_chat.py +++ b/tests/sync/test_chat.py @@ -24,7 +24,7 @@ def test_multi_replies(self): self.assertIsInstance(prediction.text, str) def test_valid_model(self): - prediction = co.chat("Yo what up?", model="medium", max_tokens=5) + prediction = co.chat("Yo what up?", model="command", max_tokens=5) self.assertIsInstance(prediction.text, str) def test_invalid_model(self):