# parse_jsonified_tool_use_generation

> **Function** in `langchain_cohere`

📖 [View in docs](https://reference.langchain.com/python/langchain-cohere/react_multi_hop/parsing/parse_jsonified_tool_use_generation)

Parses model-generated jsonified actions.

    Expects input of the form
    "{tool_use_prefix}: ```json
[{list of jsonified objects}]```"

    outputs parsed list of jsonified objects.

## Signature

```python
parse_jsonified_tool_use_generation(
    tool_use_generation: str,
    tool_use_prefix: str,
) -> List[Dict]
```

---

[View source on GitHub](https://github.com/langchain-ai/langchain-cohere/blob/98e3d038d365eebd6dabcf8c4d94072580f7401d/libs/cohere/langchain_cohere/react_multi_hop/parsing.py#L58)