pub(super) const CALL_INFO_FIELD: &str = "call_info";
pub(super) const ERROR_STATUS: &str = "error";
pub(super) const MESSAGE_FIELD: &str = "message";
pub(super) const STATUS_FIELD: &str = "status";
pub(super) const FILEPATH_FIELD: &str = "filepath";
pub(super) const INSTRUCTIONS_FIELD: &str = "instructions";
pub(super) const LARGE_RESPONSE_INSTRUCTIONS: &str =
"Use Read tool to examine, Grep to search, or jq commands to filter the data.";
pub(super) const ORIGINAL_SIZE_TOKENS_FIELD: &str = "original_size_tokens";
pub(super) const SAVED_TO_FILE_FIELD: &str = "saved_to_file";
pub(super) const LARGE_RESPONSE_FILENAME_REPLACEMENT: &str = "_";
pub(super) const LARGE_RESPONSE_FILENAME_SANITIZE_CHARS: [char; 2] = ['/', ' '];
pub(super) const CHARS_PER_TOKEN: usize = 4;
pub(super) const DEFAULT_MAX_RESPONSE_TOKENS: usize = 25_000;
pub(super) const ENTITY_COUNT_PLACEHOLDER: &str = "entity_count";
pub(super) const RESULT_PLACEHOLDER: &str = "result";
pub(super) const SKIP_NULL_FIELD_SENTINEL: &str = "__SKIP_NULL_FIELD__";
pub(super) const OPTIONAL_PARAMETERS_NOT_PROVIDED_FIELD: &str = "optional_parameters_not_provided";
pub(super) const VALUE_TYPE_NAME: &str = "Value";