Set whether we're running in CLI context (vs web app).
(enabled: bool = True)
| 26 | # huge inputs are partitioned by directory structure into batches of at most |
| 27 | # this many leaf nodes (and further bounded by an output-token budget derived |
| 28 | # from max_tokens). |
| 29 | DEFAULT_MAX_LEAF_NODES_PER_CLUSTER = 600 |
| 30 | # Artifact-aware generation: total token budget for build/CI/container/ |
| 31 | # manifest/config file contents added to the dependency graph. |
| 32 | DEFAULT_ARTIFACT_TOKEN_BUDGET = 200_000 |
| 33 | # Legacy constants (for backward compatibility) |
| 34 | MAX_TOKEN_PER_MODULE = DEFAULT_MAX_TOKEN_PER_MODULE |
no outgoing calls
no test coverage detected