Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge in daide2eng #14

Merged
merged 10 commits into from
Nov 5, 2024
3 changes: 2 additions & 1 deletion src/chiron_utils/bots/random_proposer_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from diplomacy.utils.constants import SuggestionType

from chiron_utils.bots.baseline_bot import BaselineBot, BotType
from chiron_utils.daide2eng import gen_english
from chiron_utils.parsing_utils import dipnet_to_daide_parsing
from chiron_utils.utils import get_other_powers

Expand Down Expand Up @@ -61,7 +62,7 @@ def get_random_proposal_orders(self) -> Dict[str, str]:
else:
suggested_random_orders = PRP(*random_orders)

proposals[other_power] = str(suggested_random_orders)
proposals[other_power] = gen_english(suggested_random_orders)

return proposals

Expand Down
Loading