| import re |
| from typing import Dict, List |
| import json |
|
|
|
|
|
|
| def parse_freethink(response: str, special_token_list=None, action_sep=',', max_actions=3) -> Dict: |
| """ |
| Parse response in format: <think>...</think><answer>...</answer> |
| |
| Returns a dict with keys: |
| - llm_raw_response: the original response |
| - llm_response: the response with <think> and <answer> tags |
| - think_content: the content inside <think> tag |
| - action_content: the content inside <answer> tag |
| - actions: a list of actions extracted from action_content |
| - format_correct: whether the response strictly follows the expected format |
| """ |
| response = response.replace("<image>","") |
| |
| strict_pattern = r'^\s*<think>(.*?)</think>\s*<answer>(.*?)</answer>\s*$' |
| strict_match = re.match(strict_pattern, response.strip(), re.DOTALL) |
| |
| |
| |
| extraction_pattern = r'<think>(.*?)</think>\s*<answer>(.*?)</answer>' |
| match = re.search(extraction_pattern, response, re.DOTALL) |
| format_correct = strict_match is not None |
| |
| if not strict_match: |
| think_content, action_content, actions = "", "", [] |
| else: |
| think_content, action_content = match.group(1), match.group(2) |
| if special_token_list is not None: |
| for special_token in special_token_list: |
| action_content = action_content.replace(special_token, "").strip() |
| think_content = think_content.replace(special_token, "").strip() |
| actions = [action.strip() for action in action_content.split(action_sep) if action.strip()] |
| if len(actions) > max_actions: |
| actions = actions[:max_actions] |
| action_content = (" " + action_sep + " ").join(actions) |
|
|
| llm_response = "<think>" + think_content.strip() + "</think>" + "<answer>" + action_content.strip() + "</answer>" |
| return { |
| "llm_raw_response": response, |
| "llm_response": llm_response, |
| "think_content": think_content, |
| "action_content": action_content, |
| "actions": actions, |
| "format_correct": format_correct |
| } |
|
|
| def parse_no_think(response: str, special_token_list=None, action_sep=',', max_actions=3) -> Dict: |
| """ |
| Parse response in format: <answer>...</answer> |
| |
| Returns a dict with keys: |
| - llm_raw_response: the original response |
| - llm_response: the response with <answer> tag |
| - think_content: empty string (no think content in this format) |
| - action_content: the content inside <answer> tag |
| - actions: a list of actions extracted from action_content |
| - format_correct: whether the response strictly follows the expected format |
| """ |
| response = response.replace("<image>","") |
| |
| strict_pattern = r'^\s*<answer>(.*?)</answer>\s*$' |
| strict_match = re.match(strict_pattern, response.strip(), re.DOTALL) |
| format_correct = strict_match is not None |
| |
| |
| extraction_pattern = r'<answer>(.*?)</answer>' |
| match = re.search(extraction_pattern, response, re.DOTALL) |
| |
| |
| if not strict_match: |
| think_content, action_content, actions = "", "", [] |
| else: |
| action_content = match.group(1) |
| think_content = "" |
| if special_token_list is not None: |
| for special_token in special_token_list: |
| action_content = action_content.replace(special_token, "").strip() |
| actions = [action.strip() for action in action_content.split(action_sep) if action.strip()] |
| if len(actions) > max_actions: |
| actions = actions[:max_actions] |
| action_content = (" " + action_sep + " ").join(actions) |
|
|
| llm_response = "<answer>" + action_content.strip() + "</answer>" |
| return { |
| "llm_raw_response": response, |
| "llm_response": llm_response, |
| "think_content": think_content, |
| "action_content": action_content, |
| "actions": actions, |
| "format_correct": format_correct |
| } |
|
|
| def parse_grounding(response: str, special_token_list=None, action_sep=',', max_actions=3) -> Dict: |
| """ |
| Parse response in format: <think><observation>...</observation><reasoning>...</reasoning></think><answer>...</answer> |
| |
| Returns a dict with keys: |
| - llm_raw_response: the original response |
| - llm_response: the response with all tags |
| - observation_content: the content inside <observation> tag |
| - think_content: the entire content inside <think> tag |
| - reasoning_content: the content inside <reasoning> tag |
| - action_content: the content inside <answer> tag |
| - actions: a list of actions extracted from action_content |
| - format_correct: whether the response strictly follows the expected format |
| """ |
| response = response.replace("<image>","") |
| |
| strict_pattern = r'^\s*<think>\s*<observation>(.*?)</observation>\s*<reasoning>(.*?)</reasoning>\s*</think>\s*<answer>(.*?)</answer>\s*$' |
| strict_match = re.match(strict_pattern, response.strip(), re.DOTALL) |
| format_correct = strict_match is not None |
| |
| |
| extraction_pattern = r'<think>\s*<observation>(.*?)</observation>\s*<reasoning>(.*?)</reasoning>\s*</think>\s*<answer>(.*?)</answer>' |
| match = re.search(extraction_pattern, response, re.DOTALL) |
| |
| if not match: |
| observation_content, reasoning_content, action_content, actions = "", "", "", [] |
| think_content = "" |
| else: |
| observation_content = match.group(1) |
| reasoning_content = match.group(2) |
| action_content = match.group(3) |
| think_content = "<observation>" + observation_content + "</observation><reasoning>" + reasoning_content + "</reasoning>" |
| |
| if special_token_list is not None: |
| for special_token in special_token_list: |
| observation_content = observation_content.replace(special_token, "").strip() |
| reasoning_content = reasoning_content.replace(special_token, "").strip() |
| action_content = action_content.replace(special_token, "").strip() |
| think_content = think_content.replace(special_token, "").strip() |
| |
| actions = [action.strip() for action in action_content.split(action_sep) if action.strip()] |
| if len(actions) > max_actions: |
| actions = actions[:max_actions] |
| action_content = (" " + action_sep + " ").join(actions) |
| |
| |
| llm_response = "<think>" + think_content.strip() + "</think>" + "<answer>" + action_content.strip() + "</answer>" |
| |
| return { |
| "llm_raw_response": response, |
| "llm_response": llm_response, |
| "observation_content": observation_content, |
| "think_content": think_content, |
| "reasoning_content": reasoning_content, |
| "action_content": action_content, |
| "actions": actions, |
| "format_correct": format_correct |
| } |
|
|
| def parse_worldmodeling(response: str, special_token_list=None, action_sep=',', max_actions=3) -> Dict: |
| """ |
| Parse response in format: <think><reasoning>...</reasoning><prediction>...</prediction></think><answer>...</answer> |
| |
| Returns a dict with keys: |
| - llm_raw_response: the original response |
| - llm_response: the response with all tags |
| - think_content: the entire content inside <think> tag |
| - reasoning_content: the content inside <reasoning> tag |
| - prediction_content: the content inside <prediction> tag |
| - action_content: the content inside <answer> tag |
| - actions: a list of actions extracted from action_content |
| - format_correct: whether the response strictly follows the expected format |
| """ |
| response = response.replace("<image>","") |
| |
| strict_pattern = r'^\s*<think>\s*<reasoning>(.*?)</reasoning>\s*<prediction>(.*?)</prediction>\s*</think>\s*<answer>(.*?)</answer>\s*$' |
| strict_match = re.match(strict_pattern, response.strip(), re.DOTALL) |
| format_correct = strict_match is not None |
| |
| |
| extraction_pattern = r'<think>\s*<reasoning>(.*?)</reasoning>\s*<prediction>(.*?)</prediction>\s*</think>\s*<answer>(.*?)</answer>' |
| match = re.search(extraction_pattern, response, re.DOTALL) |
| |
| if not match: |
| reasoning_content, prediction_content, action_content, actions = "", "", "", [] |
| think_content = "" |
| else: |
| reasoning_content = match.group(1) |
| prediction_content = match.group(2) |
| action_content = match.group(3) |
| think_content = "<reasoning>" + reasoning_content + "</reasoning><prediction>" + prediction_content + "</prediction>" |
| |
| if special_token_list is not None: |
| for special_token in special_token_list: |
| reasoning_content = reasoning_content.replace(special_token, "").strip() |
| prediction_content = prediction_content.replace(special_token, "").strip() |
| action_content = action_content.replace(special_token, "").strip() |
| think_content = think_content.replace(special_token, "").strip() |
| |
| actions = [action.strip() for action in action_content.split(action_sep) if action.strip()] |
| if len(actions) > max_actions: |
| actions = actions[:max_actions] |
| action_content = (" " + action_sep + " ").join(actions) |
| |
| |
| llm_response = "<think>" + think_content.strip() + "</think>" + "<answer>" + action_content.strip() + "</answer>" |
| |
| return { |
| "llm_raw_response": response, |
| "llm_response": llm_response, |
| "think_content": think_content, |
| "reasoning_content": reasoning_content, |
| "prediction_content": prediction_content, |
| "action_content": action_content, |
| "actions": actions, |
| "format_correct": format_correct |
| } |
|
|
| def parse_grounding_worldmodeling(response: str, special_token_list=None, action_sep=',', max_actions=3) -> Dict: |
| """ |
| Parse response in format: <think><observation>...</observation><reasoning>...</reasoning><prediction>...</prediction></think><answer>...</answer> |
| |
| Returns a dict with keys: |
| - llm_raw_response: the original response |
| - llm_response: the response with all tags |
| - observation_content: the content inside <observation> tag |
| - reasoning_content: the content inside <reasoning> tag |
| - prediction_content: the content inside <prediction> tag |
| - think_content: the entire content inside <think> tag |
| - action_content: the content inside <answer> tag |
| - actions: a list of actions extracted from action_content |
| - format_correct: whether the response strictly follows the expected format |
| """ |
| response = response.replace("<image>","") |
| |
| strict_pattern = r'^\s*<think>\s*<observation>(.*?)</observation>\s*<reasoning>(.*?)</reasoning>\s*<prediction>(.*?)</prediction>\s*</think>\s*<answer>(.*?)</answer>\s*$' |
| strict_match = re.match(strict_pattern, response.strip(), re.DOTALL) |
| format_correct = strict_match is not None |
| |
| |
| extraction_pattern = r'<think>\s*<observation>(.*?)</observation>\s*<reasoning>(.*?)</reasoning>\s*<prediction>(.*?)</prediction>\s*</think>\s*<answer>(.*?)</answer>' |
| match = re.search(extraction_pattern, response, re.DOTALL) |
| |
| if not match: |
| observation_content, reasoning_content, prediction_content, action_content, actions = "", "", "", "", [] |
| think_content = "" |
| else: |
| observation_content = match.group(1) |
| reasoning_content = match.group(2) |
| prediction_content = match.group(3) |
| action_content = match.group(4) |
| think_content = "<observation>" + observation_content + "</observation><reasoning>" + reasoning_content + "</reasoning><prediction>" + prediction_content + "</prediction>" |
| |
| if special_token_list is not None: |
| for special_token in special_token_list: |
| observation_content = observation_content.replace(special_token, "").strip() |
| reasoning_content = reasoning_content.replace(special_token, "").strip() |
| prediction_content = prediction_content.replace(special_token, "").strip() |
| action_content = action_content.replace(special_token, "").strip() |
| think_content = think_content.replace(special_token, "").strip() |
| |
| actions = [action.strip() for action in action_content.split(action_sep) if action.strip()] |
| if len(actions) > max_actions: |
| actions = actions[:max_actions] |
| action_content = (" " + action_sep + " ").join(actions) |
| |
| |
| llm_response = "<think>" + think_content.strip() + "</think>" + "<answer>" + action_content.strip() + "</answer>" |
| |
| return { |
| "llm_raw_response": response, |
| "llm_response": llm_response, |
| "observation_content": observation_content, |
| "reasoning_content": reasoning_content, |
| "prediction_content": prediction_content, |
| "think_content": think_content, |
| "action_content": action_content, |
| "actions": actions, |
| "format_correct": format_correct |
| } |
| |
| PARSE_FUNC_MAP = { |
| "free_think": parse_freethink, |
| "no_think": parse_no_think, |
| "grounding": parse_grounding, |
| "worldmodeling": parse_worldmodeling, |
| "grounding_worldmodeling": parse_grounding_worldmodeling, |
| "grounding_structured": parse_grounding, |
| "worldmodeling_structured": parse_worldmodeling, |
| "grounding_worldmodeling_structured": parse_grounding_worldmodeling, |
| "grounding_symbolic": parse_grounding, |
| "worldmodeling_symbolic": parse_worldmodeling, |
| "grounding_worldmodeling_symbolic": parse_grounding_worldmodeling, |
| } |
|
|