Spaces:
Running
Running
Fixed human agent
Browse files
src/game_reasoning_arena/arena/agents/human_agent.py
CHANGED
|
@@ -6,8 +6,6 @@ Implements an agent that asks the user for input to choose an action.
|
|
| 6 |
|
| 7 |
from typing import Any, Dict, Optional, List
|
| 8 |
from .base_agent import BaseAgent
|
| 9 |
-
#from agents.llm_utils import generate_prompt #TODO: fix this - the prompt for human agents!!
|
| 10 |
-
#TODO: the human agents also need a prompt! but not on the HTML format!
|
| 11 |
|
| 12 |
class HumanAgent(BaseAgent):
|
| 13 |
"""An agent that queries the user for an action."""
|
|
|
|
| 6 |
|
| 7 |
from typing import Any, Dict, Optional, List
|
| 8 |
from .base_agent import BaseAgent
|
|
|
|
|
|
|
| 9 |
|
| 10 |
class HumanAgent(BaseAgent):
|
| 11 |
"""An agent that queries the user for an action."""
|