(value: str, limit: int = 240)
| 7 | |
| 8 | |
| 9 | def summarize_text(value: str, limit: int = 240) -> str: |
| 10 | if len(value) <= limit: |
| 11 | return value |
| 12 | return value[:limit] + "..." |
| 13 | |
| 14 | |
| 15 | def summarize_tool_input(tool_call: ToolCall, file_state: AgentFileState) -> Dict[str, Any]: |
no outgoing calls
no test coverage detected