@@ -601,8 +601,7 @@ def test_cgptqp_1():
601
601
messages = [
602
602
{"role" : "system" , "content" : "You are helping a user formulate better queries" },
603
603
{"role" : "user" , "content" : "Write a more precise query of similar length to this : gig economy" }
604
- ],
605
- temperature = 0
604
+ ]
606
605
)
607
606
608
607
@pytest .mark .django_db
@@ -630,8 +629,8 @@ def test_cgptqp_2():
630
629
mock_create .assert_called_once_with (model = TEST_AI_MODEL , messages = [
631
630
{"role" : "system" , "content" : "You are a malevolent dictator" },
632
631
{"role" : "user" , "content" : "Write a more precise query of similar length to this : gig economy" }
633
- ],
634
- temperature = 0 )
632
+ ]
633
+ )
635
634
636
635
@pytest .mark .django_db
637
636
def test_cgptqp_3 ():
@@ -658,8 +657,8 @@ def test_cgptqp_3():
658
657
mock_create .assert_called_once_with (model = TEST_AI_MODEL , messages = [
659
658
{"role" : "system" , "content" : "You are a malevolent dictator" },
660
659
{"role" : "user" , "content" : "Write a more precise query of similar length to this : gig economy" }
661
- ],
662
- temperature = 0 )
660
+ ]
661
+ )
663
662
664
663
@pytest .mark .django_db
665
664
def test_cgptqp_4 ():
@@ -688,8 +687,8 @@ def test_cgptqp_4():
688
687
mock_create .assert_called_once_with (model = TEST_AI_MODEL , messages = [
689
688
{"role" : "system" , "content" : "You are a malevolent dictator" },
690
689
{"role" : "user" , "content" : "This should be used: gig economy" }
691
- ],
692
- temperature = 0 )
690
+ ]
691
+ )
693
692
694
693
695
694
@pytest .mark .django_db
@@ -721,8 +720,8 @@ def test_cgptqp_5():
721
720
mock_create .assert_called_once_with (model = TEST_AI_MODEL , messages = [
722
721
{"role" : "system" , "content" : "You are a malevolent dictator" },
723
722
{"role" : "user" , "content" : "This should be used: gig economy" }
724
- ],
725
- temperature = 0 )
723
+ ]
724
+ )
726
725
727
726
728
727
@pytest .mark .django_db
@@ -754,8 +753,8 @@ def test_cgptqp_6():
754
753
mock_create .assert_called_once_with (model = TEST_AI_MODEL , messages = [
755
754
{"role" : "system" , "content" : "You are a malevolent dictator" },
756
755
{"role" : "user" , "content" : "This should be used: gig economy" }
757
- ],
758
- temperature = 0 )
756
+ ]
757
+ )
759
758
760
759
761
760
@pytest .mark .django_db
@@ -787,8 +786,8 @@ def test_cgptqp_7():
787
786
mock_create .assert_called_once_with (model = TEST_AI_MODEL , messages = [
788
787
{"role" : "system" , "content" : "You are a malevolent dictator" },
789
788
{"role" : "user" , "content" : "This should be used: gig economy" }
790
- ],
791
- temperature = 0 )
789
+ ]
790
+ )
792
791
793
792
794
793
@pytest .fixture
0 commit comments