@yrpri/api 9.0.107 → 9.0.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -410,6 +410,7 @@ export class PolicySynthAgentsController {
|
|
|
410
410
|
this.router.delete("/:groupId/:agentId/ai-models/:modelId", auth.can("edit group"), this.removeAgentAiModel);
|
|
411
411
|
this.router.post("/:groupId/:agentId/ai-models", auth.can("edit group"), this.addAgentAiModel);
|
|
412
412
|
this.router.put("/:groupId/:agentId/memory", auth.can("edit group"), this.replaceAgentMemory);
|
|
413
|
+
this.router.get("/:groupId/:agentId/memory", auth.can("edit group"), this.getAgentMemory);
|
|
413
414
|
this.router.post("/:groupId/:agentId/inputConnectors/existing", auth.can("edit group"), this.addExistingConnector);
|
|
414
415
|
this.router.post("/:groupId/:agentId/outputConnectors/existing", auth.can("edit group"), this.addExistingConnector);
|
|
415
416
|
}
|