You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[agent] agent works much faster (bulk API methods are added)
[cookbook] small fixes + two new examples: filter project image by tag + plot tags distribution
[SDK/geometry] fix crop polygon
[plugin/nn/YOLO] new Dockerfile: uses base-py image
[guides] nn integration tutorial is improved
[SDK] minor fixes
Copy file name to clipboardexpand all lines: agent/README.md
+31-1
Original file line number
Diff line number
Diff line change
@@ -23,4 +23,34 @@ This principal scheme illustrates how agent processes the task.
23
23
24
24
[Here](https://docs.supervise.ly/cluster/add_delete_node/add_delete_node/) you will find documentaion about how to monitor Agent status.
25
25
26
-

26
+

27
+
28
+
29
+
# Environment variables:
30
+
31
+
#### Required:
32
+
33
+
-`AGENT_HOST_DIR`: directory, where agent stores user data. _(default: `$HOME/.supervisely-agent/$ACCESS_TOKEN`)_
34
+
35
+
-`SERVER_ADDRESS`: full server URL to connect to (e.g. `http://somehost:12345/agent`).
36
+
37
+
-`ACCESS_TOKEN`: unique string which allows the server to identify the agent.
38
+
39
+
-`DOCKER_REGISTRY`: list of used docker registry addresses. (e.g. `docker.deepsystems.io,docker.enterprise.supervise.ly`)
40
+
41
+
-`DOCKER_LOGIN`: list of login names for used docker registries (ordered as registries), e.g. `user,user`.
42
+
43
+
-`DOCKER_PASSWORD`: list of passwords for used docker registries (ordered as registries), e.g. `123,345`.
44
+
45
+
46
+
#### Optional:
47
+
48
+
-`WITH_LOCAL_STORAGE`: whether to use local agent storage for long-term persistent storage of task results (learned model checkpoints, images generated by DTL) instead of uploading the results to the web instance storage. When this option is enabled, those results will be unavailable when the agent is not connected to the web instance. Do not enable this option when running the agent on transient machines, like hourly rented AWS instances, as the local data there will be lost as soon as your rented time ends. _(default: true)_
49
+
50
+
-`PULL_ALWAYS`: whether to always pull docker image from registry, or only if image with given name and tags not found localy. _(default: true)_
51
+
52
+
-`DEFAULT_TIMEOUTS`: whether to use default timeout configs or load from `/workdir/src/configs/timeouts_for_stateless.json` file. _(default: true)_
53
+
54
+
-`DELETE_TASK_DIR_ON_FINISH`: whether to remove task directory after the task finishes successfully. _(default: true)_
55
+
56
+
-`DELETE_TASK_DIR_ON_FAILURE`: whether to remove task directory after the task finishes with a failure. _(default: false)_
"description": "Supervisely Agent - is a small, but powerful task manager that allows to connect any computer (your office PC or cloud server) to the platform and use it for any computational tasks: neural network training/inference/deployment, training data preparation and many more.",
0 commit comments