From 015bbb4d77d9a99a3adba7b9bc22089fc3e0dea7 Mon Sep 17 00:00:00 2001 From: Milad Khajavi Date: Thu, 30 Oct 2025 16:53:31 +0000 Subject: [PATCH] Added instructions for updating agents manually --- src/pages/develop/updating.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/pages/develop/updating.mdx b/src/pages/develop/updating.mdx index ed89227..6da99c9 100644 --- a/src/pages/develop/updating.mdx +++ b/src/pages/develop/updating.mdx @@ -34,3 +34,15 @@ It is also possible to manually implement a pair of functions for saving and loa ``` + +After making a change that requires a manual update, you need to build and deploy the updated component. Then, to update a specific agent, run the following command: + +```shell copy +golem agent update manual +``` + +Alternatively, you can update all agents when deploying the updated component: + +```shell copy +golem app deploy --update-agents manual +```