enable_cache_manager
Applicability
Product |
Supported (√/x) |
|---|---|
Atlas 350 Accelerator Card |
x |
√ |
|
√ |
|
x |
|
x |
|
x |
Note: For
Function Description
Enables or disables CacheManager, corresponding to the llm.EnableCacheManager configuration item at the bottom layer.
Prototype
1 | enable_cache_manager(self, enable_cache_manager: bool) |
Parameters
Parameter |
Data Type |
Description |
|---|---|---|
enable_cache_manager |
bool |
Whether to enable the CacheManager mode. This parameter must be set to True.
|
For Atlas 350 Accelerator Card, this parameter cannot be set to False.
Example
1 2 3 | from llm_datadist import LLMConfig llm_config = LLMConfig() llm_config.enable_cache_manager = True |
Returns
In normal cases, no value is returned.
If a parameter is incorrect, a TypeError or ValueError may be thrown.
Restrictions
None