Create ChatGPT agent
parent
5453a8acc3
commit
32b2d4a6ad
File diff suppressed because it is too large
Load Diff
|
|
@ -5,6 +5,7 @@
|
|||
from __future__ import annotations
|
||||
|
||||
import agents
|
||||
import agents.chatgpt
|
||||
|
||||
from pyserver import PyServer
|
||||
|
||||
|
|
@ -15,7 +16,7 @@ def main() -> int:
|
|||
:return: Exit code
|
||||
:rtype: int
|
||||
"""
|
||||
player = PyServer(agents.AgentOfChaos())
|
||||
player = PyServer(agents.chatgpt.ChatGPTAgent())
|
||||
|
||||
# Start listening for games
|
||||
player.start(
|
||||
|
|
|
|||
Loading…
Reference in New Issue