Some cards on the board can have more than one word, for example scuba diver. This could cause issue since the code used split_whitespace() to extract words.
This PR fixes this issue by changing the delimiter to , instead, and changing the system prompt accordingly.
Also changed the example files to use a real board of Codenames instead of randomly generated words.
Some cards on the board can have more than one word, for example
scuba diver
. This could cause issue since the code usedsplit_whitespace()
to extract words.This PR fixes this issue by changing the delimiter to
,
instead, and changing the system prompt accordingly.Also changed the example files to use a real board of Codenames instead of randomly generated words.