瀏覽代碼

scenario refman update

jrobinAV 10 月之前
父節點
當前提交
a2b94cfc54
共有 1 個文件被更改,包括 6 次插入3 次删除
  1. 6 3
      taipy/core/scenario/scenario.py

+ 6 - 3
taipy/core/scenario/scenario.py

@@ -50,9 +50,12 @@ from .scenario_id import ScenarioId
 class Scenario(_Entity, Submittable, _Labeled):
     """Instance of a Business case to solve.
 
-    A scenario holds a set of tasks (instances of `Task^` class) to submit for execution in order to
-    solve the Business case. It also holds a set of additional data nodes (instances of `DataNode` class)
-    for extra data related to the scenario.
+    A scenario holds a set of tasks (instances of `Task^` class) to submit for execution in order
+    to solve the Business case. Each task can be connected to some data nodes as input or output
+    forming an execution graph. The scenario can be submitted for execution, and the tasks will
+    be orchestrated to solve the Business case.<br>
+    A scenario also holds a set of additional data nodes (instances of `DataNode^` class) for
+    extra data related to the scenario.
 
     !!! note