Skip to content

Commit 370be0c

Browse files
committed
docs
1 parent 425b229 commit 370be0c

21 files changed

Lines changed: 41 additions & 172 deletions

docs/interfaces/IAgentSchemaCallbacks.md

Lines changed: 0 additions & 116 deletions
This file was deleted.

docs/interfaces/IOutlineFormat.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

docs/types/ComputeName.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type ComputeName = string;
1010
```
1111

12-
12+
Type alias for the compute name, represented as a string.
13+
Used to identify and reference specific compute instances.

docs/types/DisposeFn$1.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type DisposeFn$1 = () => void;
1010
```
1111

12-
12+
Function type for cleanup operations.
13+
Called when resources need to be disposed in global config context.

docs/types/DisposeFn.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type DisposeFn = () => void;
1010
```
1111

12-
12+
Function type for cleanup operations.
13+
Called when resources need to be disposed.

docs/types/EntityId.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type EntityId = string | number;
1010
```
1111

12-
12+
Represents an identifier for an entity, which can be either a string or a number.
13+
Used across persistence classes to uniquely identify stored entities such as agents, states, or memory records.

docs/types/ExecutionId.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type ExecutionId = string;
1010
```
1111

12-
12+
A unique identifier for an execution instance.
13+
Used to track and manage execution flows within the swarm.

docs/types/IComputeData.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type IComputeData = any;
1010
```
1111

12-
12+
Generic type for compute data, allowing flexibility in data structure.
13+
Can be any type to support diverse compute operations.

docs/types/PipelineName.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type PipelineName = string;
1010
```
1111

12-
12+
Type alias for the pipeline name, represented as a string.
13+
Used to identify and reference specific pipeline instances.

docs/types/ScopeOptions.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ group: docs
99
type ScopeOptions = Partial<ISchemaContext["registry"]>;
1010
```
1111

12-
12+
Optional overrides for schema services used within the schema context.
13+
Allows partial customization of the schema registry.

0 commit comments

Comments
 (0)