mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(packaging): reorganize published packages * fix(packaging): install AgentScope extra in wheel smoke * docs: align package guides and documentation site * ci(workflow): add core dependency verification step in Python package build - Add a workflow step to verify released core dependencies by installing the wheel with core extras - Assert the presence of the static index.html file to ensure proper package contents - Create and use a temporary virtual environment for isolation during verification - Keep existing artifacts upload step intact and conditional on inputs.upload_artifacts flag * fix(ci): update package installation dependencies in Windows workflow - Change pip install from editable reme_studio and core to only dev and as extras - Remove installation of reme_studio and core to streamline dependency setup - Ensure Windows CI uses the correct extras for testing environment * fix(tests): add missing commas in toml file reads in package version tests - Added trailing commas in the tomllib.loads calls for auto-fin and daily_paper configs - Ensured consistent syntax to prevent potential tuple misinterpretation - Improved readability and correctness of the test setup code * fix(packaging): protect qwenpaw releases and test Studio health
81 lines
2.4 KiB
JSON
81 lines
2.4 KiB
JSON
{
|
|
"id": "reme",
|
|
"name": "ReMe",
|
|
"description": "ReMe file-native long-term memory",
|
|
"kind": "memory",
|
|
"icon": "https://raw.githubusercontent.com/agentscope-ai/ReMe/main/docs/figure/reme_logo.png",
|
|
"activation": {
|
|
"onStartup": true,
|
|
"onCapabilities": ["hook", "tool"]
|
|
},
|
|
"contracts": {
|
|
"tools": ["reme_search"]
|
|
},
|
|
"configUiHints": {
|
|
"endpoint": {
|
|
"label": "ReMe endpoint",
|
|
"placeholder": "http://127.0.0.1:2333"
|
|
},
|
|
"autoMemoryEnabled": { "label": "Automatic memory capture" },
|
|
"autoMemoryInterval": {
|
|
"label": "Capture batch size",
|
|
"advanced": true
|
|
},
|
|
"autoDreamEnabled": { "label": "Daily memory consolidation" },
|
|
"dreamCron": {
|
|
"label": "Auto Dream schedule",
|
|
"placeholder": "0 23 * * *",
|
|
"advanced": true
|
|
},
|
|
"dreamHint": { "label": "Auto Dream hint", "advanced": true },
|
|
"timezone": {
|
|
"label": "Workspace timezone",
|
|
"placeholder": "Asia/Shanghai"
|
|
},
|
|
"rootAgentsOnly": { "label": "Root agents only", "advanced": true },
|
|
"language": { "label": "Memory guidance language" },
|
|
"autoRecall": { "label": "Automatic recall" },
|
|
"searchLimit": { "label": "Search result limit", "advanced": true },
|
|
"recallMinScore": {
|
|
"label": "Minimum recall score",
|
|
"advanced": true
|
|
}
|
|
},
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"endpoint": { "type": "string" },
|
|
"requestTimeoutMs": {
|
|
"type": "integer",
|
|
"minimum": 1000,
|
|
"maximum": 120000
|
|
},
|
|
"backgroundTimeoutMs": {
|
|
"type": "integer",
|
|
"minimum": 1000,
|
|
"maximum": 3600000
|
|
},
|
|
"shutdownTimeoutMs": {
|
|
"type": "integer",
|
|
"minimum": 100,
|
|
"maximum": 60000
|
|
},
|
|
"autoMemoryEnabled": { "type": "boolean" },
|
|
"autoMemoryInterval": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 1000
|
|
},
|
|
"autoDreamEnabled": { "type": "boolean" },
|
|
"dreamCron": { "type": "string" },
|
|
"dreamHint": { "type": "string" },
|
|
"rootAgentsOnly": { "type": "boolean" },
|
|
"language": { "type": "string", "enum": ["en", "zh"] },
|
|
"autoRecall": { "type": "boolean" },
|
|
"searchLimit": { "type": "integer", "minimum": 1, "maximum": 50 },
|
|
"recallMinScore": { "type": "number", "minimum": 0 },
|
|
"timezone": { "type": "string" }
|
|
}
|
|
}
|
|
}
|