def get_choices()

in DianJin-R1/src/rl/reward_score_cflue.py [0:0]


def get_choices(text):
    choices = "ABCDEFG"
    answer = ""
    for c in choices:
        if c in text:
            answer += c
    return answer