gepa_recover_component
Restore or recover a specific GEPA component within the Prompt Auto-Optimizer MCP server using strategies like restart, rebuild, or reset to defaults.
Instructions
Recover a specific GEPA component
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentType | Yes | Type of component to recover | |
strategy | No | Recovery strategy to use | restart |
Input Schema (JSON Schema)
{
"properties": {
"componentType": {
"description": "Type of component to recover",
"enum": [
"evolution_engine",
"pareto_frontier",
"llm_adapter",
"trajectory_store",
"memory_cache"
],
"type": "string"
},
"strategy": {
"default": "restart",
"description": "Recovery strategy to use",
"enum": [
"restart",
"restore_from_backup",
"rebuild",
"reset_to_defaults"
],
"type": "string"
}
},
"required": [
"componentType"
],
"type": "object"
}