Back to Agent Zero

extract_tools.py DOX

helpers/extract_tools.py.dox.md

2.02.2 KB
Original Source

extract_tools.py DOX

Purpose

  • Own the extract_tools.py helper module.
  • This module normalizes and repairs model-emitted tool-call JSON.
  • Keep this file-level DOX profile synchronized with extract_tools.py because this directory is intentionally flat.

Ownership

  • extract_tools.py owns the runtime implementation.
  • extract_tools.py.dox.md owns durable notes about responsibilities, contracts, side effects, and verification for that implementation.
  • Top-level functions:
  • json_parse_dirty(json: str) -> dict[str, Any] | None
  • normalize_tool_request(tool_request: Any) -> tuple[str, dict]
  • extract_json_root_string(content: str) -> str | None
  • extract_json_object_string(content)
  • extract_json_string(content)
  • fix_json_string(json_string)

Runtime Contracts

  • Helper modules own reusable framework APIs and must preserve public callers unless all callers, tests, and docs are updated together.
  • Update this file whenever public functions, classes, persistence behavior, path/security assumptions, side effects, or cross-module contracts change.
  • Observed side-effect areas: settings/state persistence.
  • Imported dependency areas include: dirty_json, helpers.modules, re, regex, typing.

Key Concepts

  • Important called helpers/classes observed in the source: extract_json_object_string, content.find, DirtyJson, content.rfind, regex.search, re.sub, json.strip, ValueError, tool_name.split, parser.parse, match.group, match.group.replace, DirtyJson.parse_string.
  • Keep request/response, tool, or helper semantics documented here at the same time as source changes.

Work Guidance

  • Preserve public helper APIs used by core code and plugins unless every caller is updated.
  • Keep path, auth, secret, persistence, network, and subprocess behavior explicit and bounded.
  • Prefer adding cohesive helper functions here only when behavior is reused across modules.

Verification

  • Run targeted tests for changed helper behavior; run security regressions for auth, filesystem, WebSocket, tunnel, upload, or secret-handling helpers.
  • Related tests observed by source search:
    • tests/test_stream_tool_early_stop.py
    • tests/test_tool_request_normalization.py

Child DOX Index

No child DOX files.