Skip to content

Commit 985eccf

Browse files
author
camel-docs-bot
committed
Auto-update documentation after merge [skip ci]
1 parent ea137f1 commit 985eccf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/mintlify/reference/camel.agents.chat_agent.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ Class for managing conversations of CAMEL Chat Agents.
288288
- **mask_tool_output** (Optional[bool]): Whether to return a sanitized placeholder instead of the raw tool output. (default: :obj:`False`)
289289
- **pause_event** (Optional[Union[threading.Event, asyncio.Event]]): Event to signal pause of the agent's operation. When clear, the agent will pause its execution. Use threading.Event for sync operations or asyncio.Event for async operations. (default: :obj:`None`)
290290
- **prune_tool_calls_from_memory** (bool): Whether to clean tool call messages from memory after response generation to save token usage. When enabled, removes FUNCTION/TOOL role messages and ASSISTANT messages with tool_calls after each step. (default: :obj:`False`)
291-
- **enable_tool_output_cache** (bool, optional): Whether to offload verbose historical tool outputs to a local cache and replace them with lightweight references in memory. Only older tool results whose payload length exceeds `__INLINE_CODE_0____INLINE_CODE_1__True`)
291+
- **enable_tool_output_cache** (bool, optional): Whether to offload verbose historical tool outputs to a local cache and replace them with lightweight references in memory. Only older tool results whose payload length exceeds `__INLINE_CODE_0____INLINE_CODE_1__False`)
292292
- **tool_output_cache_threshold** (int, optional): Minimum character length of a tool result before it becomes eligible for caching. Values below or equal to zero disable caching regardless of the toggle. (default: :obj:`2000`)
293293
- **tool_output_cache_dir** (Optional[Union[str, Path]], optional): Target directory for cached tool outputs. When omitted, a `__INLINE_CODE_0____INLINE_CODE_1__None`)
294294
- **retry_attempts** (int, optional): Maximum number of retry attempts for rate limit errors. (default: :obj:`3`)
@@ -321,7 +321,7 @@ def __init__(
321321
mask_tool_output: bool = False,
322322
pause_event: Optional[Union[threading.Event, asyncio.Event]] = None,
323323
prune_tool_calls_from_memory: bool = False,
324-
enable_tool_output_cache: bool = True,
324+
enable_tool_output_cache: bool = False,
325325
tool_output_cache_threshold: int = 2000,
326326
tool_output_cache_dir: Optional[Union[str, Path]] = None,
327327
retry_attempts: int = 3,

0 commit comments

Comments
 (0)