Spaces:
Runtime error
Runtime error
File size: 2,518 Bytes
4bdab37 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
import unittest
from unittest import TestCase
from chatarena.arena import Arena
class TestArena(TestCase):
def test_arena_1(self):
arena = Arena.from_config("examples/nlp-classroom.json")
print("=== Step 1 ===")
arena.step()
arena.environment.print()
print("=== Step 2 ===")
arena.step()
arena.environment.print()
print("=== Step 3 ===")
arena.step()
arena.environment.print()
self.assertTrue(True)
def test_arena_2(self):
arena = Arena.from_config("examples/nlp-classroom.json")
arena.run(num_steps=10)
arena.environment.print()
self.assertTrue(True)
def test_arena_3(self):
arena = Arena.from_config("examples/tic-tac-toe.json")
for i in range(1, 10):
print(f"=== Step {i} ===")
arena.step()
arena.environment.print()
self.assertTrue(True)
# def test_arena_4(self):
# with open("examples/nlp-classroom.json", "r") as fp:
# config = json.load(fp)
# arena = Arena.from_config(config)
# arena.launch_gradio()
#
# self.assertTrue(True)
#
# def test_arena_5(self):
# with open("examples/tic-tac-toe.json", "r") as fp:
# config = json.load(fp)
# arena = Arena.from_config(config)
# arena.launch_gradio()
#
# self.assertTrue(True)
#
# def test_arena_6(self):
# with open("examples/nlp-classroom-gpt4.json", "r") as fp:
# config = json.load(fp)
# arena = Arena.from_config(config)
# arena.launch_gradio()
#
# self.assertTrue(True)
#
# def test_arena_7(self):
# with open("examples/tic-tac-toe-gpt4.json", "r") as fp:
# config = json.load(fp)
# arena = Arena.from_config(config)
# arena.launch_gradio()
#
# self.assertTrue(True)
#
# def test_arena_8(self):
# with open("examples/nlp-classroom-3players.json", "r") as fp:
# config = json.load(fp)
# arena = Arena.from_config(config)
# arena.launch_gradio()
#
# self.assertTrue(True)
#
#
# def test_arena_9(self):
# with open("examples/rock-paper-scissors.json", "r") as fp:
# config = json.load(fp)
# arena = Arena.from_config(config)
# arena.launch_gradio()
#
# self.assertTrue(True)
if __name__ == "__main__":
unittest.main()
|