mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-06 08:01:31 +00:00
Introduce support for scoped plugin configurations and a small WebUI to list/switch them. Rename plugin memory config to config.default.json and set memory plugin per_agent_config to false. API changes: Plugins.get_config now searches project/agent-specific configs, falls back to config.default.json, and returns loaded_path/loaded_project_name/loaded_agent_profile metadata. Helper updates: add CONFIG_DEFAULT_FILE_NAME, enhance get_plugin_config to consider project and agent profile, replace/find wrapper with find_plugin_assets which returns matching paths and scope metadata, and minor refactors in plugin path handling. WebUI: add plugin-configs.html and update plugin-settings-store.js and plugin-settings.html to expose scope info, config listing modal, and scope-mismatch messaging.
17 lines
616 B
JSON
17 lines
616 B
JSON
{
|
|
"memory_recall_enabled": true,
|
|
"memory_recall_delayed": false,
|
|
"memory_recall_interval": 3,
|
|
"memory_recall_history_len": 10000,
|
|
"memory_recall_memories_max_search": 12,
|
|
"memory_recall_solutions_max_search": 8,
|
|
"memory_recall_memories_max_result": 5,
|
|
"memory_recall_solutions_max_result": 3,
|
|
"memory_recall_similarity_threshold": 0.7,
|
|
"memory_recall_query_prep": false,
|
|
"memory_recall_post_filter": false,
|
|
"memory_memorize_enabled": true,
|
|
"memory_memorize_consolidation": true,
|
|
"memory_memorize_replace_threshold": 0.9,
|
|
"agent_memory_subdir": "default"
|
|
}
|