src.tools.core.parsers.non_json_tool_call_parser.NonJSONToolCallParser
Bases: BaseToolCallParser
Parser for extracting non-JSON formatted tool calls from text.
Specializes in parsing tool calls that use custom formats like
Example
config = {
"formats": {
"non_json_format": {
"function_call_pattern": r'<function=(.*?)>{(.*?)}</function>'
}
}
}
parser = NonJSONToolCallParser(config)
result = parser.parse('<function=my_tool>{"arg1": "value"}</function>')
Source code in src/tools/core/parsers/non_json_tool_call_parser.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|
extract(text)
Extract non-JSON tool calls using regex patterns.
Searches for tool calls using configured regex patterns and parses their arguments as JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
text
|
str
|
Cleaned input text containing tool calls. |
required |
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dict[str, Any]: Parsed tool calls or error information.
|
Source code in src/tools/core/parsers/non_json_tool_call_parser.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|